You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2010/05/10 16:03:34 UTC

svn commit: r942742 - /directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/GenericIndex.java

Author: elecharny
Date: Mon May 10 14:03:34 2010
New Revision: 942742

URL: http://svn.apache.org/viewvc?rev=942742&view=rev
Log:
Added some Javadoc

Modified:
    directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/GenericIndex.java

Modified: directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/GenericIndex.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/GenericIndex.java?rev=942742&r1=942741&r2=942742&view=diff
==============================================================================
--- directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/GenericIndex.java (original)
+++ directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/GenericIndex.java Mon May 10 14:03:34 2010
@@ -35,9 +35,13 @@ import org.apache.directory.shared.ldap.
  */
 public class GenericIndex<K, O, ID> implements Index<K, O, ID>
 {
-
+    /** The attribute identifier for this index */ 
     protected String attributeId;
+    
+    /** Index cache size */
     protected int cacheSize;
+    
+    /** Index working directory */
     protected File wkDirPath;