Author: simonetripodi
Date: Sat Jun 11 15:37:53 2011
New Revision: 1134673
URL: http://svn.apache.org/viewvc?rev=1134673&view=rev
Log:
added missing javadoc
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java?rev=1134673&r1=1134672&r2=1134673&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java
Sat Jun 11 15:37:53 2011
@@ -38,6 +38,7 @@ public interface DirectedGraph<V extends
/**
* Returns the set of {@link Edge}s which are inbound to the {@link
Vertex}.
*
+ * @param v the {@link Vertex} which inbound {@link Edge}s have to be
returned
* @return the set of {@link Edge}s which are inbound to the {@link
Vertex}.
*/
Set<E> getInbound( Vertex v );
@@ -45,6 +46,7 @@ public interface DirectedGraph<V extends
/**
* Returns the set of {@link Edge}s which lead away from the {@link
Vertex}.
*
+ * @param v the {@link Vertex} which outbound {@link Edge}s have to be
returned
* @return the set of {@link Edge}s which lead away from the {@link
Vertex}.
*/
Set<E> getOutbound( Vertex v );
@@ -52,6 +54,7 @@ public interface DirectedGraph<V extends
/**
* Returns the {@link Vertex} which originates the {@link Edge}.
*
+ * @param e the {@link Edge} which has the returned {@link Vertex} as
source.
* @return the {@link Vertex} which originates the {@link Edge}.
*/
Vertex getSource( Edge e );
@@ -59,6 +62,7 @@ public interface DirectedGraph<V extends
/**
* Returns the {@link Vertex} which terminates the {@link Edge}.
*
+ * @param e the {@link Edge} which has the returned {@link Vertex} as
target.
* @return the {@link Vertex} which terminates the {@link Edge}.
*/
Vertex getTarget( Edge e );