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/21 16:28:21 UTC

svn commit: r1138018 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/ShortestDistances.java

Author: simonetripodi
Date: Tue Jun 21 14:28:21 2011
New Revision: 1138018

URL: http://svn.apache.org/viewvc?rev=1138018&view=rev
Log:
added missing class description

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/ShortestDistances.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/ShortestDistances.java?rev=1138018&r1=1138017&r2=1138018&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/ShortestDistances.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/ShortestDistances.java Tue Jun 21 14:28:21 2011
@@ -25,6 +25,11 @@ import java.util.Map;
 
 import org.apache.commons.graph.Vertex;
 
+/**
+ * Stores and compares Graph Vertices weights.
+ *
+ * @param <V> the Graph vertices type
+ */
 final class ShortestDistances<V extends Vertex>
     implements Comparator<V>
 {