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/11 17:40:56 UTC

svn commit: r1134676 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java

Author: simonetripodi
Date: Sat Jun 11 15:40:56 2011
New Revision: 1134676

URL: http://svn.apache.org/viewvc?rev=1134676&view=rev
Log:
fixed Path description, kindly borrowed from Wikipedia

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java?rev=1134676&r1=1134675&r2=1134676&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java Sat Jun 11 15:40:56 2011
@@ -22,7 +22,8 @@ package org.apache.commons.graph;
 import java.util.List;
 
 /**
- * Description of the Interface
+ * A {@code Path} in a {@link Graph} is a sequence of {@link Vertex} such that from each of its vertices there is an
+ * {@link Edge} to the next {@link Vertex} in the sequence.
  */
 public interface Path
 {