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/15 00:51:22 UTC

svn commit: r1135838 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java

Author: simonetripodi
Date: Tue Jun 14 22:51:22 2011
New Revision: 1135838

URL: http://svn.apache.org/viewvc?rev=1135838&view=rev
Log:
WeightedPath is composed by WeightedEdges

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java?rev=1135838&r1=1135837&r2=1135838&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java Tue Jun 14 22:51:22 2011
@@ -23,10 +23,10 @@ package org.apache.commons.graph;
  * A {@code Path} where {@link Edge} are weighted.
  *
  * @param <V> the Graph vertices type
- * @param <E> the Graph edges type
+ * @param <WE> the Graph weighted edges type
  */
-public interface WeightedPath<V extends Vertex, E extends Edge<V>>
-    extends Path<V, E>
+public interface WeightedPath<V extends Vertex, WE extends WeightedEdge<V>>
+    extends Path<V, WE>
 {
 
     /**