You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2013/05/21 23:31:44 UTC

svn commit: r1484970 - /accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java

Author: ctubbsii
Date: Tue May 21 21:31:44 2013
New Revision: 1484970

URL: http://svn.apache.org/r1484970
Log:
ACCUMULO-1443 copy javadoc from TableOperationsImpl to interface

Modified:
    accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java

Modified: accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java?rev=1484970&r1=1484969&r2=1484970&view=diff
==============================================================================
--- accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java (original)
+++ accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java Tue May 21 21:31:44 2013
@@ -42,6 +42,11 @@ import org.apache.hadoop.io.Text;
 
 public interface TableOperations {
   
+  /**
+   * Retrieve a list of tables in Accumulo.
+   * 
+   * @return List of tables in accumulo
+   */
   public SortedSet<String> list();
   
   /**