You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2006/04/22 20:57:32 UTC

svn commit: r396148 - /geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/repository/ListableRepository.java

Author: ammulder
Date: Sat Apr 22 11:57:29 2006
New Revision: 396148

URL: http://svn.apache.org/viewcvs?rev=396148&view=rev
Log:
Improve docs

Modified:
    geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/repository/ListableRepository.java

Modified: geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/repository/ListableRepository.java
URL: http://svn.apache.org/viewcvs/geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/repository/ListableRepository.java?rev=396148&r1=396147&r2=396148&view=diff
==============================================================================
--- geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/repository/ListableRepository.java (original)
+++ geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/repository/ListableRepository.java Sat Apr 22 11:57:29 2006
@@ -27,14 +27,16 @@
  */
 public interface ListableRepository extends Repository {
     /**
-     * Gets a list of all the items available in the repository.
+     * Gets a set (with entries of type Artifact) of all the items available
+     * in the repository.
      */
     public SortedSet list();
 
     /**
-     * Gets a list of all the available items matching the specified artifact,
-     * which is normally not fully resolved (so the results all match whatever
-     * fields are specified on the argument Artifact).
+     * Gets a set (with entries of type Artifact) of all the available items
+     * matching the specified artifact, which is normally not fully resolved
+     * (so the results all match whatever fields are specified on the argument
+     * Artifact).
      */
     public SortedSet list(Artifact query);
 }