diff options
author | Artur Signell <artur@vaadin.com> | 2015-01-09 16:51:12 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-01-09 16:51:12 +0200 |
commit | e5015dc74c0cfa6501c9cc569464c704b7f18a32 (patch) | |
tree | bf214ff75ff4e471c96133bad3016fed7ca79dd9 /shared | |
parent | 8126e115cc9cbca30d1744faeff1cdd40508a50c (diff) | |
download | vaadin-framework-e5015dc74c0cfa6501c9cc569464c704b7f18a32.tar.gz vaadin-framework-e5015dc74c0cfa6501c9cc569464c704b7f18a32.zip |
Format project, once again
Change-Id: I57cb6208613ce4fc8fce52c07ac4a18982095d2e
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java | 8 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java index bff5d95c6c..7466df9c99 100644 --- a/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java @@ -42,14 +42,14 @@ public interface EditorClientRpc extends ClientRpc { void cancel(int rowIndex); /** - * Confirms a pending {@link EditorServerRpc#bind(int) bind request} - * sent by the client. + * Confirms a pending {@link EditorServerRpc#bind(int) bind request} sent by + * the client. */ void confirmBind(); /** - * Confirms a pending {@link EditorServerRpc#save(int) save request} - * sent by the client. + * Confirms a pending {@link EditorServerRpc#save(int) save request} sent by + * the client. */ void confirmSave(); } diff --git a/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java index 8637e34606..34a16ccb38 100644 --- a/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java @@ -28,8 +28,8 @@ 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 open the editor. + * {@link EditorClientRpc#confirmBind() confirm call} before the client can + * open the editor. * * @param rowIndex * the index of the edited row |