diff options
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/ReconnectDialogConfiguration.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/ReconnectDialogConfiguration.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/server/src/main/java/com/vaadin/ui/ReconnectDialogConfiguration.java b/server/src/main/java/com/vaadin/ui/ReconnectDialogConfiguration.java index f24045e1a6..c95cbbafec 100644 --- a/server/src/main/java/com/vaadin/ui/ReconnectDialogConfiguration.java +++ b/server/src/main/java/com/vaadin/ui/ReconnectDialogConfiguration.java @@ -27,15 +27,15 @@ import java.io.Serializable; public interface ReconnectDialogConfiguration extends Serializable { /** * Gets the text to show in the reconnect dialog when trying to re-establish - * the server connection + * the server connection. * * @return the text to show in the reconnect dialog */ public String getDialogText(); /** - * Sets the text to show in the reconnect dialog when trying to re-establish - * the server connection + * Sets the text to show in the reconnect dialog when trying to + * re-establish. the server connection * * @param dialogText * the text to show in the reconnect dialog @@ -44,7 +44,7 @@ public interface ReconnectDialogConfiguration extends Serializable { /** * Gets the text to show in the reconnect dialog after giving up trying to - * reconnect ({@link #getReconnectAttempts()} reached) + * reconnect ({@link #getReconnectAttempts()} reached). * * @return the text to show in the reconnect dialog after giving up */ @@ -52,7 +52,7 @@ public interface ReconnectDialogConfiguration extends Serializable { /** * Sets the text to show in the reconnect dialog after giving up trying to - * reconnect ({@link #getReconnectAttempts()} reached) + * reconnect ({@link #getReconnectAttempts()} reached). * * @param dialogTextGaveUp * the text to show in the reconnect dialog after giving up @@ -61,7 +61,7 @@ public interface ReconnectDialogConfiguration extends Serializable { /** * Gets the number of times to try to reconnect to the server before giving - * up + * up. * * @return the number of times to try to reconnect */ @@ -69,7 +69,7 @@ public interface ReconnectDialogConfiguration extends Serializable { /** * Sets the number of times to try to reconnect to the server before giving - * up + * up. * * @param reconnectAttempts * the number of times to try to reconnect @@ -77,14 +77,14 @@ public interface ReconnectDialogConfiguration extends Serializable { public void setReconnectAttempts(int reconnectAttempts); /** - * Gets the interval (in milliseconds) between reconnect attempts + * Gets the interval (in milliseconds) between reconnect attempts. * * @return the interval (in ms) between reconnect attempts */ public int getReconnectInterval(); /** - * Sets the interval (in milliseconds) between reconnect attempts + * Sets the interval (in milliseconds) between reconnect attempts. * * @param reconnectInterval * the interval (in ms) between reconnect attempts |