]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add missing since tags for 8.2 (#9938)
authorHenri Sara <henri.sara@gmail.com>
Thu, 7 Sep 2017 07:14:14 +0000 (10:14 +0300)
committerGitHub <noreply@github.com>
Thu, 7 Sep 2017 07:14:14 +0000 (10:14 +0300)
client/src/main/java/com/vaadin/client/ui/VCheckBoxGroup.java
client/src/main/java/com/vaadin/client/ui/VRadioButtonGroup.java
server/src/main/java/com/vaadin/ui/CheckBoxGroup.java
server/src/main/java/com/vaadin/ui/RadioButtonGroup.java
server/src/main/java/com/vaadin/ui/Tree.java
shared/src/main/java/com/vaadin/shared/ui/ListingJsonConstants.java

index 8d38331af1a4a046ec43250652b26e86093ff7aa..427c4011a524aa811c6250736086a9783d5064de 100644 (file)
@@ -99,7 +99,7 @@ public class VCheckBoxGroup extends FocusableFlowPanelComposite
      * Returns the JsonObject used to populate the CheckBox widget that contains
      * given Element.
      *
-     * @since
+     * @since 8.2
      * @param element
      *            the element to search for
      * @return the related JsonObject; {@code null} if not found
index 1561cb9b8ad65cdd9c101c216eb993bdd7d20fd1..15b0d6f0437d7b83bff225d3d1df6b4dca99d214 100644 (file)
@@ -106,8 +106,8 @@ public class VRadioButtonGroup extends FocusableFlowPanelComposite
     /**
      * Returns the JsonObject used to populate the RadioButton widget that
      * contains given Element.
-     * 
-     * @since
+     *
+     * @since 8.2
      * @param element
      *            the element to search for
      * @return the related JsonObject; {@code null} if not found
index c257a1a0d0d03b93c0e6790c64cf888dc92722c1..0c7eb3f516a1479dd5037fa365e3b8fba934cac1 100644 (file)
@@ -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;
index c6e4a66c6599ff474347b82a7d3c1e1d76190114..f8f2bd399130475c6b6ee5197cc2457cf9fe72ba 100644 (file)
@@ -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;
index 3981a0a9169ed95ad9b6e1e960ed46e7548e7c95..6e35d0ff3b50006f09b066fd0bcca0d01ddc0ef8 100644 (file)
@@ -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 -&gt; Notification.show(
      *         ((TreeContextClickEvent&lt;Person&gt;) event).getItem() + " Clicked"));
index acdbcd097fcf92b1b00dfd768c36de4311f77db6..ed5cf56380a2b612c26dea53b421188b00260f20 100644 (file)
@@ -34,7 +34,7 @@ public class ListingJsonConstants implements Serializable {
     public static final String JSONKEY_ITEM_SELECTED = "s";
 
     /**
-     * @since
+     * @since 8.2
      */
     public static final String JSONKEY_ITEM_DESCRIPTION = "dsc";
 }