Author: sebb
Date: Mon Nov 15 18:53:39 2010
New Revision: 1035409

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

Modified:
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/impl/VFSClassLoader.java
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/impl/VFSClassLoader.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/impl/VFSClassLoader.java?rev=1035409&r1=1035408&r2=1035409&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/impl/VFSClassLoader.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/impl/VFSClassLoader.java
 Mon Nov 15 18:53:39 2010
@@ -120,6 +120,7 @@ public class VFSClassLoader extends Secu
     /**
      * Provide access to the file objects this class loader represents.
      * @return An array of FileObjects.
+     * @since 2.0
      */
     public FileObject[] getFileObjects()
     {

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java?rev=1035409&r1=1035408&r2=1035409&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java
 Mon Nov 15 18:53:39 2010
@@ -65,6 +65,7 @@ public class DelegateFileObject
     /**
      * Get access to the delegated file.
      * @return The FileObject.
+     * @since 2.0
      */
     public FileObject getDelegateFile()
     {
@@ -310,6 +311,7 @@ public class DelegateFileObject
 
     /**
      * Sets the last-modified time of this file.
+     * @since 2.0
      */
     @Override
     protected boolean doSetLastModTime(final long modtime)
@@ -408,6 +410,7 @@ public class DelegateFileObject
     /**
      * Refresh file information.
      * @throws FileSystemException if an error occurs.
+     * @since 2.0
      */
     @Override
     public void refresh() throws FileSystemException
@@ -419,6 +422,7 @@ public class DelegateFileObject
         }
     }
 
+    /** @since 2.0 */
     protected FileContentInfo doGetContentInfo() throws Exception
     {
         return file.getContent().getContentInfo();
@@ -426,6 +430,7 @@ public class DelegateFileObject
 
     /**
      * Renames the file.
+     * @since 2.0
      */
     @Override
     protected void doRename(FileObject newFile)
@@ -436,6 +441,7 @@ public class DelegateFileObject
 
     /**
      * Removes an attribute of this file.
+     * @since 2.0
      */
     @Override
     protected void doRemoveAttribute(final String atttrName)
@@ -446,6 +452,7 @@ public class DelegateFileObject
 
     /**
      * Creates access to the file for random i/o.
+     * @since 2.0
      */
     @Override
     protected RandomAccessContent doGetRandomAccessContent(final 
RandomAccessMode mode) throws Exception


Reply via email to