Author: sebb
Date: Sun Jul  6 06:23:00 2008
New Revision: 674298

URL: http://svn.apache.org/viewvc?rev=674298&view=rev
Log:
Javadoc corrections

Modified:
    
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/AbstractArchive.java
    
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/Archive.java
    
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/ArchiveEntry.java

Modified: 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/AbstractArchive.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/AbstractArchive.java?rev=674298&r1=674297&r2=674298&view=diff
==============================================================================
--- 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/AbstractArchive.java
 (original)
+++ 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/AbstractArchive.java
 Sun Jul  6 06:23:00 2008
@@ -41,7 +41,7 @@
 
        /**
         * Compresses the file with the given String as a filename
-        * @see org.apache.commons.compress.Archive#save(java.lang.String)
+        * @see org.apache.commons.compress.Archive#save(OutputStream)
         */
        public void save(File output) throws ArchiveException {
                if(output == null) {

Modified: 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/Archive.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/Archive.java?rev=674298&r1=674297&r2=674298&view=diff
==============================================================================
--- 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/Archive.java
 (original)
+++ 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/Archive.java
 Sun Jul  6 06:23:00 2008
@@ -51,7 +51,6 @@
         * There must be at least 1 file to be packed.
         * 
         * @throws ArchiveException if there is no destination file or files to 
be packed
-        * @return true, if the operation has been ended without exceptions
         */
        public void save(OutputStream output) throws ArchiveException;
 

Modified: 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/ArchiveEntry.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/ArchiveEntry.java?rev=674298&r1=674297&r2=674298&view=diff
==============================================================================
--- 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/ArchiveEntry.java
 (original)
+++ 
commons/sandbox/compress/trunk/src/java/org/apache/commons/compress/ArchiveEntry.java
 Sun Jul  6 06:23:00 2008
@@ -37,8 +37,8 @@
        
        /**
         * Constructs a new ArchiveEntry with name and stram
-        * @param name the name of this entry
-        * @param stream the inputstream of this entry
+        * @param entryName the name of this entry
+        * @param entryStream the inputstream of this entry
         */
        public ArchiveEntry(String entryName, InputStream entryStream) {
                super();


Reply via email to