]> source.dussan.org Git - vaadin-framework.git/commitdiff
Update missing since tags for 7.7.7 (#8474) 7.7.7
authorPekka Hyvönen <pekka@vaadin.com>
Tue, 7 Feb 2017 11:00:53 +0000 (13:00 +0200)
committerGitHub <noreply@github.com>
Tue, 7 Feb 2017 11:00:53 +0000 (13:00 +0200)
* Add missing since tags for 7.7.7

client/src/main/java/com/vaadin/client/widget/grid/selection/HasUserSelectionAllowed.java
client/src/main/java/com/vaadin/client/widgets/Grid.java
server/src/main/java/com/vaadin/data/util/BeanItem.java
server/src/main/java/com/vaadin/data/util/MethodProperty.java
server/src/main/java/com/vaadin/data/util/NestedMethodProperty.java
server/src/main/java/com/vaadin/ui/Grid.java
server/src/main/java/com/vaadin/util/EncodeUtil.java

index de4eda36caa91f1cfc53a364155a6fc774782b50..d097ad02a755592145a207086c43cc4a09814730 100644 (file)
@@ -21,6 +21,8 @@ package com.vaadin.client.widget.grid.selection;
  *
  * @param <T>
  *            Grid's row type
+ * 
+ * @since 7.7.7
  */
 public interface HasUserSelectionAllowed<T> extends SelectionModel<T> {
 
index 7ef2167f1ca99e3068bc11f707cfdac2cd1929c3..44c627776de608df60ced81a7049cb52c1c1eab6 100755 (executable)
@@ -3086,6 +3086,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
          * @param userSelectionAllowed
          *            <code>true</code> if the user is allowed to change the
          *            selection, <code>false</code> otherwise
+         * @since 7.7.7
          */
         public void setUserSelectionAllowed(boolean userSelectionAllowed) {
             if (userSelectionAllowed == this.userSelectionAllowed) {
@@ -9249,6 +9250,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
      * 
      * @return <code>true</code> if selection by the user is allowed by the
      *         selection model (the default), <code>false</code> otherwise
+     * @since 7.7.7
      */
     public boolean isUserSelectionAllowed() {
         if (!(getSelectionModel() instanceof HasUserSelectionAllowed)) {
index 99853d458cc7993a204e189c45bf1a571f47597c..0d3fbdcd7140d4b813f308bff59fb0f9ab24bd98 100644 (file)
@@ -276,6 +276,7 @@ public class BeanItem<BT> extends PropertysetItem {
      * 
      * @param bean
      *            The new bean to use for this item, not <code>null</code>
+     * @since 7.7.7
      */
     public void setBean(BT bean) {
         if (bean == null) {
index 829e37e321748a4438423720a6ea1feb1b4b74d2..98063b941a9bf8308726358a30e393a74fc1b4c8 100644 (file)
@@ -771,6 +771,7 @@ public class MethodProperty<T> extends AbstractProperty<T> {
      * The instance used by this property
      *
      * @return the instance used for fetching the property value
+     * @since 7.7.7
      */
     public Object getInstance() {
         return instance;
@@ -786,6 +787,7 @@ public class MethodProperty<T> extends AbstractProperty<T> {
      *
      * @param instance
      *            the instance to use
+     * @since 7.7.7
      */
     public void setInstance(Object instance) {
         if (this.instance.getClass() != instance.getClass()) {
index 0ed4f085f6605ee48e7e9b0ae1db877712728705..5300b635f36b96bb7739b89f239f5783b9f9539d 100644 (file)
@@ -271,6 +271,7 @@ public class NestedMethodProperty<T> extends AbstractProperty<T> {
      * The instance used by this property
      * 
      * @return the instance used for fetching the property value
+     * @since 7.7.7
      */
     public Object getInstance() {
         return instance;
@@ -286,6 +287,7 @@ public class NestedMethodProperty<T> extends AbstractProperty<T> {
      * 
      * @param instance
      *            the instance to use
+     * @since 7.7.7
      */
     public void setInstance(Object instance) {
         if (this.instance.getClass() != instance.getClass()) {
index 4b7793893d3d9d02187493823f6a763fbd22df25..5c27773ad7287a94f09b6aaccae81323c03dd687 100644 (file)
@@ -1111,6 +1111,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
          * client side selection while still allowing programmatic selection on
          * the server.
          *
+         * @since 7.7.7
          */
         public interface HasUserSelectionAllowed extends SelectionModel {
 
@@ -6861,6 +6862,8 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
 
     /**
      * Refreshes, i.e. causes the client side to re-render all rows.
+     *
+     * @since 7.7.7
      */
     public void refreshAllRows() {
         datasourceExtension.refreshCache();
index 3319211c2cace225060a1b0681ab6b01a4c00a86..b708329a7047cbb3244a72f8c5829531677dfe2a 100644 (file)
@@ -21,7 +21,7 @@ import java.nio.charset.Charset;
  * Utilities related to various encoding schemes.
  *
  * @author Vaadin Ltd
- * @since
+ * @since 7.7.7
  */
 public class EncodeUtil {
     private static final Charset utf8 = Charset.forName("UTF-8");