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:37:25 UTC

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

Author: simonetripodi
Date: Sat Jun 11 17:37:24 2011
New Revision: 1134701

URL: http://svn.apache.org/viewvc?rev=1134701&view=rev
Log:
minor code format

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=1134701&r1=1134700&r2=1134701&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:37:24 2011
@@ -25,31 +25,31 @@ import org.apache.commons.graph.exceptio
  * Description of the Interface
  */
 public interface MutableDirectedGraph<V extends Vertex, E extends Edge>
-     extends DirectedGraph<V, E>
+    extends DirectedGraph<V, E>
 {
+
     /**
      * Adds a feature to the Vertex attribute of the MutableDirectedGraph object
      */
-    public void addVertex(V v)
+    public void addVertex( V v )
         throws GraphException;
 
     /**
      * Adds a feature to the Edge attribute of the MutableDirectedGraph object
      */
-    public void addEdge(E e,
-                        V source,
-                        V target)
+    public void addEdge( E e, V source, V target )
         throws GraphException;
 
     /**
      * Description of the Method
      */
-    public void removeVertex(V v)
+    public void removeVertex( V v )
         throws GraphException;
 
     /**
      * Description of the Method
      */
-    public void removeEdge(E e)
+    public void removeEdge( E e )
         throws GraphException;
+
 }