Modified: 
commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/NodeSequenceVisitor.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/NodeSequenceVisitor.java?rev=1486948&r1=1486620&r2=1486948&view=diff
==============================================================================
--- 
commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/NodeSequenceVisitor.java
 (original)
+++ 
commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/NodeSequenceVisitor.java
 Tue May 28 15:00:27 2013
@@ -24,9 +24,9 @@ import static java.util.Collections.unmo
 import java.util.ArrayList;
 import java.util.List;
 
-import org.apache.commons.graph.model.BaseLabeledEdge;
-import org.apache.commons.graph.model.BaseLabeledVertex;
 import org.apache.commons.graph.model.UndirectedMutableGraph;
+import org.apache.commons.graph.model.labeled.BaseLabeledEdge;
+import org.apache.commons.graph.model.labeled.BaseLabeledVertex;
 
 public final class NodeSequenceVisitor
     extends BaseGraphVisitHandler<BaseLabeledVertex, BaseLabeledEdge, 
UndirectedMutableGraph<BaseLabeledVertex, BaseLabeledEdge>, 
List<BaseLabeledVertex>>

Modified: 
commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/VisitTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/VisitTestCase.java?rev=1486948&r1=1486620&r2=1486948&view=diff
==============================================================================
--- 
commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/VisitTestCase.java
 (original)
+++ 
commons/sandbox/graph/branches/modularization/visit/src/test/java/org/apache/commons/graph/visit/VisitTestCase.java
 Tue May 28 15:00:27 2013
@@ -19,8 +19,8 @@ package org.apache.commons.graph.visit;
  * under the License.
  */
 
-import static org.apache.commons.graph.CommonsGraph.newUndirectedMutableGraph;
-import static org.apache.commons.graph.CommonsGraph.visit;
+import static 
org.apache.commons.graph.model.GraphUtils.newUndirectedMutableGraph;
+import static org.apache.commons.graph.visit.GraphVisitor.visit;
 import static org.junit.Assert.assertEquals;
 
 import java.util.ArrayList;
@@ -28,9 +28,9 @@ import java.util.List;
 
 import org.apache.commons.graph.Graph;
 import org.apache.commons.graph.builder.AbstractGraphConnection;
-import org.apache.commons.graph.model.BaseLabeledEdge;
-import org.apache.commons.graph.model.BaseLabeledVertex;
 import org.apache.commons.graph.model.UndirectedMutableGraph;
+import org.apache.commons.graph.model.labeled.BaseLabeledEdge;
+import org.apache.commons.graph.model.labeled.BaseLabeledVertex;
 import org.junit.Test;
 
 public final class VisitTestCase


Reply via email to