diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2007-12-28 07:19:20 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2007-12-28 07:19:20 +0000 |
commit | c079009f76ce2bb21f3cd800013e60e322234b23 (patch) | |
tree | adc92134ea4cf379e455897dd6041079b1cbf499 | |
parent | d27a2768d83edcc38fba80c3811b4a7d5b24e488 (diff) | |
download | vaadin-framework-c079009f76ce2bb21f3cd800013e60e322234b23.tar.gz vaadin-framework-c079009f76ce2bb21f3cd800013e60e322234b23.zip |
replaced bad javadoc comments with non-javadocs
svn changeset:3317/svn branch:trunk
-rw-r--r-- | src/com/itmill/toolkit/data/util/FilesystemContainer.java | 38 |
1 files changed, 27 insertions, 11 deletions
diff --git a/src/com/itmill/toolkit/data/util/FilesystemContainer.java b/src/com/itmill/toolkit/data/util/FilesystemContainer.java index 9493533223..b19cefa743 100644 --- a/src/com/itmill/toolkit/data/util/FilesystemContainer.java +++ b/src/com/itmill/toolkit/data/util/FilesystemContainer.java @@ -31,6 +31,10 @@ import com.itmill.toolkit.terminal.Resource; * @VERSION@ * @since 3.0 */ +/** + * @author mattitahvonen + * + */ public class FilesystemContainer implements Container.Hierarchical { /** @@ -815,9 +819,11 @@ public class FilesystemContainer implements Container.Hierarchical { this.recursive = recursive; } - /** - * @see com.itmill.toolkit.data.Container#addContainerProperty(Object, - * Class, Object) + /* + * (non-Javadoc) + * + * @see com.itmill.toolkit.data.Container#addContainerProperty(java.lang.Object, + * java.lang.Class, java.lang.Object) */ public boolean addContainerProperty(Object propertyId, Class type, Object defaultValue) throws UnsupportedOperationException { @@ -825,7 +831,9 @@ public class FilesystemContainer implements Container.Hierarchical { "File system container does not support this operation"); } - /** + /* + * (non-Javadoc) + * * @see com.itmill.toolkit.data.Container#addItem() */ public Object addItem() throws UnsupportedOperationException { @@ -833,15 +841,19 @@ public class FilesystemContainer implements Container.Hierarchical { "File system container does not support this operation"); } - /** - * @see com.itmill.toolkit.data.Container#addItem(Object) + /* + * (non-Javadoc) + * + * @see com.itmill.toolkit.data.Container#addItem(java.lang.Object) */ public Item addItem(Object itemId) throws UnsupportedOperationException { throw new UnsupportedOperationException( "File system container does not support this operation"); } - /** + /* + * (non-Javadoc) + * * @see com.itmill.toolkit.data.Container#removeAllItems() */ public boolean removeAllItems() throws UnsupportedOperationException { @@ -849,8 +861,10 @@ public class FilesystemContainer implements Container.Hierarchical { "File system container does not support this operation"); } - /** - * @see com.itmill.toolkit.data.Container#removeItem(Object) + /* + * (non-Javadoc) + * + * @see com.itmill.toolkit.data.Container#removeItem(java.lang.Object) */ public boolean removeItem(Object itemId) throws UnsupportedOperationException { @@ -858,8 +872,10 @@ public class FilesystemContainer implements Container.Hierarchical { "File system container does not support this operation"); } - /** - * @see com.itmill.toolkit.data.Container#removeContainerProperty(Object) + /* + * (non-Javadoc) + * + * @see com.itmill.toolkit.data.Container#removeContainerProperty(java.lang.Object) */ public boolean removeContainerProperty(Object propertyId) throws UnsupportedOperationException { |