You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2010/10/08 03:44:24 UTC

svn commit: r1005694 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FilesystemEntry.java

Author: niallp
Date: Fri Oct  8 01:44:24 2010
New Revision: 1005694

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

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FilesystemEntry.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FilesystemEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FilesystemEntry.java?rev=1005694&r1=1005693&r2=1005694&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FilesystemEntry.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FilesystemEntry.java Fri Oct  8 01:44:24 2010
@@ -27,6 +27,7 @@ import java.io.Serializable;
  *   <li>Exists - whether the file exists or not (see {@link File#exists()})</li>
  *   <li>Directory - whether the file is a directory or not (see {@link File#isDirectory()})</li>
  *   <li>Last Modified Date/Time (see {@link File#lastModified()})</li>
+ *   <li>Length (see {@link File#length()}) - directories treated as zero</li>
  *   <li>Children - contents of a directory (see {@link File#listFiles(java.io.FileFilter)})</li>
  * </ul>
  * <p>