Author: simonetripodi
Date: Sat Jun 11 20:24:01 2011
New Revision: 1134745
URL: http://svn.apache.org/viewvc?rev=1134745&view=rev
Log:
added missing javadoc
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
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/MutableDirectedGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.java?rev=1134745&r1=1134744&r2=1134745&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.java
Sat Jun 11 20:24:01 2011
@@ -22,6 +22,9 @@ package org.apache.commons.graph;
/**
* The {@code MutableDirectedGraph} is a directed graph that supports the
addition and removal of
* {@link Vertex} and {@link Edge}s.
+ *
+ * @param <V> the Graph vertices type
+ * @param <E> the Graph edges type
*/
public interface MutableDirectedGraph<V extends Vertex, E extends Edge>
extends DirectedGraph<V, E>
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java?rev=1134745&r1=1134744&r2=1134745&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
Sat Jun 11 20:24:01 2011
@@ -21,6 +21,9 @@ package org.apache.commons.graph;
/**
* The {@code MutableGraph} is a graph that supports the addition and removal
of {@link Vertex} and {@link Edge}s.
+ *
+ * @param <V> the Graph vertices type
+ * @param <E> the Graph edges type
*/
public interface MutableGraph<V extends Vertex, E extends Edge>
extends Graph<V, E>
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=1134745&r1=1134744&r2=1134745&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 20:24:01 2011
@@ -23,6 +23,10 @@ package org.apache.commons.graph;
* A graph is a {@code WeightedGraph} if a number (weight) is assigned to each
edge.
* Such weights might represent, for example, costs, lengths or capacities,
etc. depending on the problem.
* The weight of the graph is the sum of the weights given to all edges.
+ *
+ * @param <V> the Graph vertices type
+ * @param <W> the {@link Edge} weight.
+ * @param <WE> the Graph weighted edges type
*/
public interface WeightedGraph<V extends Vertex, W extends Number, WE extends
WeightedEdge<W>>
extends Graph<V, WE>