From: Joonas Lehtinen Date: Fri, 26 Sep 2008 14:08:31 +0000 (+0000) Subject: Declared Application.getSystemMessages() API as final: JavaDoc changed. X-Git-Tag: 6.7.0.beta1~4077 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=277ad105a1a512b6832201d57c6c0f62e774fce9;p=vaadin-framework.git Declared Application.getSystemMessages() API as final: JavaDoc changed. svn changeset:5529/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/Application.java b/src/com/itmill/toolkit/Application.java index 6eadaf8e8e..2233fa1cf4 100644 --- a/src/com/itmill/toolkit/Application.java +++ b/src/com/itmill/toolkit/Application.java @@ -170,9 +170,8 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener private String logoutURL = null; /** - * Experimental API, not finalized. The default SystemMessages (read-only). - * Change by overriding getSystemMessages() and returning - * CustomizedSystemMessages + * The default SystemMessages (read-only). Change by overriding + * getSystemMessages() and returning CustomizedSystemMessages */ private static final SystemMessages DEFAULT_SYSTEM_MESSAGES = new SystemMessages(); @@ -1084,10 +1083,9 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener } /** - * Experimental API, not finalized. Gets the SystemMessages for this - * application. SystemMessages are used to notify the user of various - * critical situations that can occur, such as session expiration, - * client/server out of sync, and internal server error. + * Gets the SystemMessages for this application. SystemMessages are used to + * notify the user of various critical situations that can occur, such as + * session expiration, client/server out of sync, and internal server error. * * You can customize the messages by overriding this method and returning * {@link CustomizedSystemMessages} @@ -1225,8 +1223,8 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener } /** - * Experimental API, not finalized. Contains the system messages used to - * notify the user about various critical situations that can occur. + * Contains the system messages used to notify the user about various + * critical situations that can occur. *

* Customize by overriding the static Application.getSystemMessages() and * returning {@link CustomizedSystemMessages} @@ -1347,8 +1345,8 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener } /** - * Experimental API, not finalized. Contains the system messages used to - * notify the user about various critical situations that can occur. + * Contains the system messages used to notify the user about various + * critical situations that can occur. *

* Customize by overriding the static Application.getSystemMessages() and * returning CustomizedSystemMessages. Note that getSystemMessages() is @@ -1397,7 +1395,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener * client happens. * * @param sessionExpiredNotificationEnabled - * true = enabled, false = disabled + * true = enabled, false = disabled */ public void setSessionExpiredNotificationEnabled( boolean sessionExpiredNotificationEnabled) { @@ -1424,7 +1422,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener * from HTTPSession.getMaxInactiveInterval() * * @param sessionExpiredMessage - * the message + * the message */ public void setSessionExpiredMessage(String sessionExpiredMessage) { this.sessionExpiredMessage = sessionExpiredMessage;