Author: simonetripodi
Date: Sat Jun 11 15:04:44 2011
New Revision: 1134666
URL: http://svn.apache.org/viewvc?rev=1134666&view=rev
Log:
completed getWeight() method javadoc
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java?rev=1134666&r1=1134665&r2=1134666&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java
Sat Jun 11 15:04:44 2011
@@ -26,7 +26,10 @@ public interface WeightedGraph<V extends
{
/**
- * Gets the weight attribute of the WeightedGraph object
+ * Gets the weight attribute of the WeightedGraph object.
+ *
+ * @param e the {@link Edge} reference.
+ * @return the weight attribute of the WeightedGraph object.
*/
W getWeight( WE e );