Author: simonetripodi
Date: Sat Jun 11 14:43:30 2011
New Revision: 1134660

URL: http://svn.apache.org/viewvc?rev=1134660&view=rev
Log:
fixed javadoc descriptions

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=1134660&r1=1134659&r2=1134660&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 14:43:30 2011
@@ -33,24 +33,30 @@ public interface DirectedGraph<V extends
 {
 
     /**
-     * getInbound( Vertex ) Returns the set of edges which are inbound to the
-     * Vertex.
+     * Returns the set of {@link Edge}s which are inbound to the {@link 
Vertex}.
+     *
+     * @return the set of {@link Edge}s which are inbound to the {@link 
Vertex}.
      */
     Set<E> getInbound( Vertex v );
 
     /**
-     * getOutbound( Vertex ) Returns the set of edges which lead away from the
-     * Vertex.
+     * Returns the set of {@link Edge}s which lead away from the {@link 
Vertex}.
+     *
+     * @return the set of {@link Edge}s which lead away from the {@link 
Vertex}.
      */
     Set<E> getOutbound( Vertex v );
 
     /**
-     * getSource( Edge ) Returns the vertex which originates the edge.
+     * Returns the {@link Vertex} which originates the {@link Edge}.
+     *
+     * @return the {@link Vertex} which originates the {@link Edge}.
      */
     Vertex getSource( Edge e );
 
     /**
-     * getTarget( Edge ) Returns the vertex which terminates the edge.
+     * Returns the {@link Vertex} which terminates the {@link Edge}.
+     *
+     * @return the {@link Vertex} which terminates the {@link Edge}.
      */
     Vertex getTarget( Edge e );
 


Reply via email to