Author: simonetripodi
Date: Sat Jun 11 22:08:38 2011
New Revision: 1134789
URL: http://svn.apache.org/viewvc?rev=1134789&view=rev
Log:
fixed Javadoc
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=1134789&r1=1134788&r2=1134789&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
Sat Jun 11 22:08:38 2011
@@ -20,14 +20,16 @@ package org.apache.commons.graph;
*/
/**
- * Description of the Interface
+ * A {@code Path} where {@link Edge} are weighted.
*/
public interface WeightedPath
extends Path
{
/**
- * Gets the weight attribute of the WeightedPath object
+ * Gets the weight attribute of the {@code WeightedPath} object.
+ *
+ * @return the weight attribute of the {@code WeightedPath} object.
*/
Number getWeight();