Author: sebb
Date: Mon Nov 15 18:50:19 2010
New Revision: 1035403

URL: http://svn.apache.org/viewvc?rev=1035403&view=rev
Log:
Adding @since tags

Modified:
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/auth/StaticUserAuthenticator.java
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileObject.java

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/auth/StaticUserAuthenticator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/auth/StaticUserAuthenticator.java?rev=1035403&r1=1035402&r2=1035403&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/auth/StaticUserAuthenticator.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/auth/StaticUserAuthenticator.java
 Mon Nov 15 18:50:19 2010
@@ -53,6 +53,7 @@ public class StaticUserAuthenticator imp
 
     /**
      * {...@inheritdoc}
+     * @since 2.0
      */
     @Override
     public int hashCode()
@@ -68,6 +69,7 @@ public class StaticUserAuthenticator imp
 
     /**
      * {...@inheritdoc}
+     * @since 2.0
      */
     @Override
     public boolean equals(Object obj)
@@ -111,6 +113,7 @@ public class StaticUserAuthenticator imp
 
     /**
      * {...@inheritdoc}
+     * @since 2.0
      */
     public int compareTo(final StaticUserAuthenticator other)
     {
@@ -149,6 +152,7 @@ public class StaticUserAuthenticator imp
 
     /**
      * {...@inheritdoc}
+     * @since 2.0
      */
     @Override
     public String toString()

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java?rev=1035403&r1=1035402&r2=1035403&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
 Mon Nov 15 18:50:19 2010
@@ -183,6 +183,7 @@ public abstract class AbstractFileSystem
     /**
      * Returns the root URI specified for this file System.
      * @return The root URI used in this file system.
+     * @since 2.0
      */
     public String getRootURI()
     {

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java?rev=1035403&r1=1035402&r2=1035403&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java
 Mon Nov 15 18:50:19 2010
@@ -92,6 +92,7 @@ public abstract class AbstractOriginatin
      * @param fileSystemOptions The FileSystem options.
      * @return The FileSystem.
      * @throws FileSystemException if an error occurs.
+     * @since 2.0
      */
     protected synchronized FileSystem getFileSystem(FileName rootName, final 
FileSystemOptions fileSystemOptions)
         throws FileSystemException

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java?rev=1035403&r1=1035402&r2=1035403&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java
 Mon Nov 15 18:50:19 2010
@@ -210,6 +210,7 @@ public final class DefaultFileContent im
      * @param attrName The name of the attribute to check.
      * @return true if the attribute is associated with the file.
      * @throws FileSystemException if an error occurs.
+     * @since 2.0
      */
     public boolean hasAttribute(final String attrName) throws 
FileSystemException
     {
@@ -254,6 +255,7 @@ public final class DefaultFileContent im
     /**
      * Used internally to flag situations where the file attributes should be
      * reretrieved.
+     * @since 2.0
      */
     public void resetAttributes()
     {
@@ -317,6 +319,7 @@ public final class DefaultFileContent im
      * Removes an attribute.
      * @param attrName The name of the attribute to remove.
      * @throws FileSystemException if an error occurs.
+     * @since 2.0
      */
     public void removeAttribute(final String attrName) throws 
FileSystemException
     {

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileObject.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileObject.java?rev=1035403&r1=1035402&r2=1035403&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileObject.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileObject.java
 Mon Nov 15 18:50:19 2010
@@ -154,6 +154,7 @@ public class RamFileObject extends Abstr
      *
      * @see 
org.apache.commons.vfs2.provider.AbstractFileObject#doSetLastModifiedTime(long)
      */
+    /** @since 2.0 */
     @Override
     protected boolean doSetLastModTime(long modtime) throws Exception
     {


Reply via email to