Browse Source

Finish the since tag (#11540)

tags/8.8.0.beta1
Sun Zhe 5 years ago
parent
commit
557af9af92
No account linked to committer's email address

+ 1
- 1
server/src/main/java/com/vaadin/data/converter/StringToUuidConverter.java View File

@@ -36,7 +36,7 @@ import com.vaadin.data.ValueContext;
* </p>
*
* @author Vaadin Ltd
* @since
* @since 8.8
*/
public class StringToUuidConverter implements Converter <String, UUID> {


+ 3
- 3
server/src/main/java/com/vaadin/ui/Grid.java View File

@@ -1030,7 +1030,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
* @param <P>
* the presentation type
*
* @since
* @since 8.8
*/
protected <P> Column(ValueProvider<T, V> valueProvider,
ValueProvider<V, P> presentationProvider,
@@ -2805,7 +2805,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
* the behavior when
* @return the newly added column, not <code>null</code>
*
* @since
* @since 8.8
*/
public Column<T, ?> addColumn(String propertyName,
AbstractRenderer<? super T, ?> renderer,
@@ -3001,7 +3001,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
* @param <P>
* the column presentation type
*
* @since
* @since 8.8
*/
private <V, P> Column<T, V> createColumn(ValueProvider<T, V> valueProvider,
ValueProvider<V, P> presentationProvider,

+ 2
- 2
server/src/main/java/com/vaadin/ui/Slider.java View File

@@ -266,7 +266,7 @@ public class Slider extends AbstractField<Double> {
* @param updateValueOnClick
* {@code true} to update the value of the slider on click,
* {@code false} otherwise.
* @since
* @since 8.8
*/
public void setUpdateValueOnClick(boolean updateValueOnClick) {
getState().updateValueOnClick = updateValueOnClick;
@@ -277,7 +277,7 @@ public class Slider extends AbstractField<Double> {
*
* @return {@code true} if the Slider updates its value on click. By
* default, returns {@code false}
* @since
* @since 8.8
*/
public boolean isUpdateValueOnClick() {
return getState(false).updateValueOnClick;

Loading…
Cancel
Save