diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2009-09-15 13:49:19 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2009-09-15 13:49:19 +0000 |
commit | 513861844cf78f0ad838c05f3363cf5aaeb8e432 (patch) | |
tree | 614e511a8cb2278a16c3c92d8cf418a079ad9756 /src | |
parent | ade91f47d8564940ac6001873a99415d0830a53b (diff) | |
download | vaadin-framework-513861844cf78f0ad838c05f3363cf5aaeb8e432.tar.gz vaadin-framework-513861844cf78f0ad838c05f3363cf5aaeb8e432.zip |
JavaDoc update to clear out documentation issue discussed in http://vaadin.com/forum/-/message_boards/message/67998
svn changeset:8806/svn branch:6.1
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/Application.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java index c87f50c2e7..ca86467e04 100644 --- a/src/com/vaadin/Application.java +++ b/src/com/vaadin/Application.java @@ -1328,10 +1328,13 @@ public abstract class Application implements URIHandler, * Contains the system messages used to notify the user about various * critical situations that can occur. * <p> - * Customize by overriding the static Application.getSystemMessages() and - * returning CustomizedSystemMessages. Note that getSystemMessages() is - * static - changing the system messages will by default change the message - * for all users of the application. + * Vaadin gets the SystemMessages from your application by calling a static + * getSystemMessages() method. By default the + * Application.getSystemMessages() is used. Your can customize this by + * defining the a static MyApplication.getSystemMessages() and returning + * CustomizedSystemMessages. Note that getSystemMessages() is static - + * changing the system messages will by default change the message for all + * users of the application. * </p> * <p> * The default behavior is to show a notification, and restart the |