]> source.dussan.org Git - vaadin-framework.git/commitdiff
Partial javadocs fix for vaadin-shared (#8068)
authorIlia Motornyi <elmot@vaadin.com>
Thu, 22 Dec 2016 12:13:23 +0000 (14:13 +0200)
committerHenri Sara <henri.sara@gmail.com>
Thu, 22 Dec 2016 12:13:23 +0000 (14:13 +0200)
shared/src/main/java/com/vaadin/shared/data/DataProviderRpc.java
shared/src/main/java/com/vaadin/shared/ui/ComponentStateUtil.java
shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java
shared/src/main/java/com/vaadin/shared/ui/grid/HeightMode.java
shared/src/main/java/com/vaadin/shared/ui/grid/editor/EditorServerRpc.java
shared/src/main/java/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java

index 701ba6acc98b5010e4d07ad9560173ec04dc768b..4c7cff82b32c70b2d808c5c319b9158ae74dd376 100644 (file)
@@ -52,7 +52,7 @@ public interface DataProviderRpc extends ClientRpc {
      * @param rowDataJson
      *            the updated row data
      * @see com.vaadin.shared.ui.grid.GridState#JSONKEY_DATA
-     * @see com.vaadin.ui.components.grid.Renderer#encode(Object)
+     * @see com.vaadin.ui.Renderer#encode(Object)
      */
     @NoLayout
     public void setRowData(int firstRowIndex, JsonArray rowDataJson);
index bcc4b3f496e6ee6586d3016e4ed72897cd5d23e7..081abfa8aa27a4548d15de074e0c0a3223c295ba 100644 (file)
@@ -56,7 +56,9 @@ public final class ComponentStateUtil implements Serializable {
     /**
      * Removes an event listener id.
      *
-     * @param eventListenerId
+     * @param state
+     *            shared state
+     * @param eventIdentifier
      *            The event identifier to remove
      * @deprecated Use a {@link Registration} object returned by
      *             {@link #addRegisteredEventListener(SharedState, String)} to
index 1074b181d8da49d6cabaa2ea1ba38b1127b97a12..62dee006f718612f13cb53bb2567e6c60ca168c5 100644 (file)
@@ -22,6 +22,7 @@ import java.util.List;
 import com.vaadin.shared.annotations.DelegateToWidget;
 import com.vaadin.shared.data.sort.SortDirection;
 import com.vaadin.shared.ui.AbstractSingleSelectState;
+import elemental.json.JsonArray;
 
 /**
  * The shared state for the {@link com.vaadin.ui.Grid} component.
@@ -41,49 +42,49 @@ public class GridState extends AbstractSingleSelectState {
     /**
      * The key in which a row's data can be found.
      *
-     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
      */
     public static final String JSONKEY_DATA = "d";
 
     /**
      * The key in which a row's own key can be found.
      *
-     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
      */
     public static final String JSONKEY_ROWKEY = "k";
 
     /**
      * The key in which a row's generated style can be found.
      *
-     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
      */
     public static final String JSONKEY_ROWSTYLE = "rs";
 
     /**
      * The key in which a generated styles for a row's cells can be found.
      *
-     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
      */
     public static final String JSONKEY_CELLSTYLES = "cs";
 
     /**
      * The key in which a row's description can be found.
      *
-     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
      */
     public static final String JSONKEY_ROWDESCRIPTION = "rd";
 
     /**
      * The key in which a cell's description can be found.
      *
-     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+     * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
      */
     public static final String JSONKEY_CELLDESCRIPTION = "cd";
 
     /**
      * The key that tells whether details are visible for the row.
      *
-     * @see com.vaadin.ui.Grid#setDetailsGenerator(com.vaadin.ui.Grid.DetailsGenerator)
+     * @see com.vaadin.ui.Grid#setDetailsGenerator(com.vaadin.ui.components.grid.DetailsGenerator)
      * @see com.vaadin.ui.Grid#setDetailsVisible(Object, boolean)
      * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int,
      *      elemental.json.JsonArray)
index 802901289228e21c9e3f4d450272a9573a16f6e9..ca0f2c67619576d80a6e4ac7a460514fcfddecda 100644 (file)
@@ -17,15 +17,12 @@ package com.vaadin.shared.ui.grid;
 
 /**
  * The modes for height calculation that are supported by Grid (
- * {@link com.vaadin.client.ui.grid.Grid client} and
- * {@link com.vaadin.ui.components.grid.Grid server}) /
- * {@link com.vaadin.client.ui.grid.Escalator Escalator}.
+ * client ({@code com.vaadin.client.widgets.Grid}),
+ * server ({@code com.vaadin.ui.Grid server}), and
+ * Escalator ({@code com.vaadin.client.widgets.Escalator Escalator}).
  *
  * @since 7.4
  * @author Vaadin Ltd
- * @see com.vaadin.client.ui.grid.Grid#setHeightMode(HeightMode)
- * @see com.vaadin.ui.components.grid.Grid#setHeightMode(HeightMode)
- * @see com.vaadin.client.ui.grid.Escalator#setHeightMode(HeightMode)
  */
 public enum HeightMode {
     /**
index 3ddcfff75822ebec5ad5c9471f858544852e1598..8f338aa1a07ef999aa1f1750105a001f9d470441 100644 (file)
@@ -28,7 +28,7 @@ public interface EditorServerRpc extends ServerRpc {
     /**
      * Asks the server to open the editor and bind data to it. When a bind
      * request is sent, it must be acknowledged with a
-     * {@link EditorClientRpc#confirmBind() confirm call} before the client can
+     * {@link EditorClientRpc#confirmBind(boolean) confirm call} before the client can
      * open the editor.
      *
      * @param key
@@ -39,7 +39,7 @@ public interface EditorServerRpc extends ServerRpc {
     /**
      * Asks the server to save unsaved changes in the editor to the bean. When a
      * save request is sent, it must be acknowledged with a
-     * {@link EditorClientRpc#confirmSave() confirm call}.
+     * {@link EditorClientRpc#confirmSave(boolean) confirm call}.
      */
     void save();
 
index e79ca049b4ce5a16ea47411add2d293363c4a9c7..3a3b04091c47496626e635595a9dbd5b328793d2 100644 (file)
@@ -14,9 +14,6 @@
  * the License.
  */
 
-/**
- *
- */
 package com.vaadin.shared.ui.ui;
 
 import com.vaadin.shared.Connector;