You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/16 17:32:20 UTC

svn commit: r1136481 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java

Author: simonetripodi
Date: Thu Jun 16 15:32:20 2011
New Revision: 1136481

URL: http://svn.apache.org/viewvc?rev=1136481&view=rev
Log:
no very intuitive, set explicitly

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java?rev=1136481&r1=1136480&r2=1136481&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java Thu Jun 16 15:32:20 2011
@@ -47,9 +47,9 @@ public interface Graph<V extends Vertex,
     Set<E> getEdges();
 
     /**
-     * Returns all edges which touch this vertex.
+     * Returns all edges which touch this vertex, where the input vertex is in the edge head.
      *
-     * @return all edges which touch this vertex.
+     * @return all edges which touch this vertex, where the input vertex is in the edge head.
      */
     Set<E> getEdges( V v );