You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gr...@apache.org on 2005/07/06 19:49:17 UTC

svn commit: r209487 - in /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom: fileupload/ tree/model/

Author: grantsmith
Date: Wed Jul  6 10:49:15 2005
New Revision: 209487

URL: http://svn.apache.org/viewcvs?rev=209487&view=rev
Log:
fix javadoc warnings

Modified:
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFile.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultFileImpl.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultImplBase.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultMemoryImpl.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/model/TreeModel.java

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFile.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFile.java?rev=209487&r1=209486&r2=209487&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFile.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFile.java Wed Jul  6 10:49:15 2005
@@ -40,8 +40,8 @@
     /**
      * Answer the uploaded file contents input stream
      *
-     * @return
      * @throws IOException
+     * @return InputStream
      */
     public InputStream getInputStream() throws IOException;
 
@@ -61,7 +61,7 @@
 
     /**
      * Answer the size of this file.
-     * @return
+     * @return long
      */
     public long getSize();
 }

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultFileImpl.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultFileImpl.java?rev=209487&r1=209486&r2=209487&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultFileImpl.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultFileImpl.java Wed Jul  6 10:49:15 2005
@@ -61,7 +61,7 @@
     /**
      * Answer the uploaded file contents input stream
      *
-     * @return
+     * @return InputStream
      * @throws IOException
      */
     public InputStream getInputStream() throws IOException
@@ -74,7 +74,7 @@
 
     /**
      * Answer the size of this file.
-     * @return
+     * @return long
      */
     public long getSize()
     {

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultImplBase.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultImplBase.java?rev=209487&r1=209486&r2=209487&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultImplBase.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultImplBase.java Wed Jul  6 10:49:15 2005
@@ -47,7 +47,7 @@
     /**
      * Answer the uploaded file contents input stream
      *
-     * @return
+     * @return InputStream
      * @throws IOException
      */
     public abstract InputStream getInputStream() throws IOException;
@@ -73,7 +73,7 @@
 
     /**
      * Answer the size of this file.
-     * @return
+     * @return long
      */
     public abstract long getSize();
 }

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultMemoryImpl.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultMemoryImpl.java?rev=209487&r1=209486&r2=209487&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultMemoryImpl.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/UploadedFileDefaultMemoryImpl.java Wed Jul  6 10:49:15 2005
@@ -63,7 +63,7 @@
     /**
      * Answer the uploaded file contents input stream
      *
-     * @return
+     * @return InputStream
      * @throws IOException
      */
     public InputStream getInputStream() throws IOException
@@ -74,7 +74,7 @@
 
     /**
      * Answer the size of this file.
-     * @return
+     * @return long
      */
     public long getSize() {
     	if( bytes == null )

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/model/TreeModel.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/model/TreeModel.java?rev=209487&r1=209486&r2=209487&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/model/TreeModel.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/model/TreeModel.java Wed Jul  6 10:49:15 2005
@@ -87,7 +87,7 @@
     /**
      * Answer the mutable collection of tree model listeners.
      *
-     * @return
+     * @return Collection
      */
     Collection getTreeModelListeners();
 }