You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/11 19:43:30 UTC

svn commit: r1134705 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.java

Author: simonetripodi
Date: Sat Jun 11 17:43:30 2011
New Revision: 1134705

URL: http://svn.apache.org/viewvc?rev=1134705&view=rev
Log:
fixed MutableDirectedGraph interface description

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.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=1134705&r1=1134704&r2=1134705&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 17:43:30 2011
@@ -22,7 +22,8 @@ package org.apache.commons.graph;
 import org.apache.commons.graph.exception.GraphException;
 
 /**
- * Description of the Interface
+ * The {@code MutableDirectedGraph} is a directed graph that supports the addition and removal of
+ * {@link Vertex} and {@link Edge}s.
  */
 public interface MutableDirectedGraph<V extends Vertex, E extends Edge>
     extends DirectedGraph<V, E>