diff options
author | Marc Englund <marc.englund@itmill.com> | 2008-02-25 09:40:17 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2008-02-25 09:40:17 +0000 |
commit | b6d33e4b2ad318a45060506dc345d9d3f7dd56ff (patch) | |
tree | 2b4e22f18368e8a3c51133bf9050d49cbbfafde4 | |
parent | b7668ece9bd3d1347356fb347944687db39a1b6a (diff) | |
download | vaadin-framework-b6d33e4b2ad318a45060506dc345d9d3f7dd56ff.tar.gz vaadin-framework-b6d33e4b2ad318a45060506dc345d9d3f7dd56ff.zip |
Javadoc addition, fixes #95
svn changeset:3909/svn branch:trunk
-rw-r--r-- | src/com/itmill/toolkit/ui/AbstractComponent.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/itmill/toolkit/ui/AbstractComponent.java b/src/com/itmill/toolkit/ui/AbstractComponent.java index 70691e2bd9..8a1122c814 100644 --- a/src/com/itmill/toolkit/ui/AbstractComponent.java +++ b/src/com/itmill/toolkit/ui/AbstractComponent.java @@ -46,7 +46,8 @@ public abstract class AbstractComponent implements Component, MethodEventSource private String caption; /** - * Application specific data object. + * Application specific data object. The component does not use or modify + * this. */ private Object applicationData; @@ -964,7 +965,8 @@ public abstract class AbstractComponent implements Component, MethodEventSource } /** - * Sets the application specific data object. + * Sets the data object, that can be used for any application specific data. + * The component does not use or modify this data. * * @param data * the Application specific data. @@ -975,7 +977,7 @@ public abstract class AbstractComponent implements Component, MethodEventSource } /** - * Gets the application specific data. + * Gets the application specific data. See {@link #setData(Object)}. * * @return the Application specific data set with setData function. * @since 3.1 |