diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-09-07 10:14:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 10:14:14 +0300 |
commit | 2618df9617c778bb66de81bec392f44be52a7d45 (patch) | |
tree | df7a588919500fbf995246ce8eb04e8559404911 /server | |
parent | 5727ab868e40df9d4f1096a39617cc3444ec4835 (diff) | |
download | vaadin-framework-2618df9617c778bb66de81bec392f44be52a7d45.tar.gz vaadin-framework-2618df9617c778bb66de81bec392f44be52a7d45.zip |
Add missing since tags for 8.2 (#9938)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/CheckBoxGroup.java | 8 | ||||
-rw-r--r-- | server/src/main/java/com/vaadin/ui/RadioButtonGroup.java | 8 | ||||
-rw-r--r-- | server/src/main/java/com/vaadin/ui/Tree.java | 16 |
3 files changed, 16 insertions, 16 deletions
diff --git a/server/src/main/java/com/vaadin/ui/CheckBoxGroup.java b/server/src/main/java/com/vaadin/ui/CheckBoxGroup.java index c257a1a0d0..0c7eb3f516 100644 --- a/server/src/main/java/com/vaadin/ui/CheckBoxGroup.java +++ b/server/src/main/java/com/vaadin/ui/CheckBoxGroup.java @@ -183,8 +183,8 @@ public class CheckBoxGroup<T> extends AbstractMultiSelect<T> * * @param descriptionGenerator * the item description generator to set, not {@code null} - * - * @since + * + * @since 8.2 */ public void setItemDescriptionGenerator( DescriptionGenerator<T> descriptionGenerator) { @@ -199,8 +199,8 @@ public class CheckBoxGroup<T> extends AbstractMultiSelect<T> * Gets the item description generator. * * @return the item description generator - * - * @since + * + * @since 8.2 */ public DescriptionGenerator<T> getItemDescriptionGenerator() { return descriptionGenerator; diff --git a/server/src/main/java/com/vaadin/ui/RadioButtonGroup.java b/server/src/main/java/com/vaadin/ui/RadioButtonGroup.java index c6e4a66c65..f8f2bd3991 100644 --- a/server/src/main/java/com/vaadin/ui/RadioButtonGroup.java +++ b/server/src/main/java/com/vaadin/ui/RadioButtonGroup.java @@ -235,8 +235,8 @@ public class RadioButtonGroup<T> extends AbstractSingleSelect<T> * * @param descriptionGenerator * the item description generator to set, not {@code null} - * - * @since + * + * @since 8.2 */ public void setItemDescriptionGenerator( DescriptionGenerator<T> descriptionGenerator) { @@ -251,8 +251,8 @@ public class RadioButtonGroup<T> extends AbstractSingleSelect<T> * Gets the item description generator. * * @return the item description generator - * - * @since + * + * @since 8.2 */ public DescriptionGenerator<T> getItemDescriptionGenerator() { return descriptionGenerator; diff --git a/server/src/main/java/com/vaadin/ui/Tree.java b/server/src/main/java/com/vaadin/ui/Tree.java index 3981a0a916..6e35d0ff3b 100644 --- a/server/src/main/java/com/vaadin/ui/Tree.java +++ b/server/src/main/java/com/vaadin/ui/Tree.java @@ -612,8 +612,8 @@ public class Tree<T> extends Composite /** * Sets the description generator that is used for generating tooltip * descriptions for items. - * - * @since + * + * @since 8.2 * @param descriptionGenerator * the item description generator to set, or <code>null</code> to * remove a previously set generator @@ -666,7 +666,7 @@ public class Tree<T> extends Composite /** * Gets the item description generator. * - * @since + * @since 8.2 * @return the item description generator */ public DescriptionGenerator<T> getItemDescriptionGenerator() { @@ -864,9 +864,9 @@ public class Tree<T> extends Composite /** * Returns the current state of automatic width recalculation. - * + * * @return {@code true} if enabled; {@code false} if disabled - * + * * @since 8.1.1 */ public boolean isAutoRecalculateWidth() { @@ -876,11 +876,11 @@ public class Tree<T> extends Composite /** * Sets the automatic width recalculation on or off. This feature is on by * default. - * + * * @param autoRecalculateWidth * {@code true} to enable recalculation; {@code false} to turn it * off - * + * * @since 8.1.1 */ public void setAutoRecalculateWidth(boolean autoRecalculateWidth) { @@ -1096,7 +1096,7 @@ public class Tree<T> extends Composite * ContextClickEvent for the Tree Component. * <p> * Usage: - * + * * <pre> * tree.addContextClickListener(event -> Notification.show( * ((TreeContextClickEvent<Person>) event).getItem() + " Clicked")); |