Author: simonetripodi
Date: Sat Jun 11 20:21:47 2011
New Revision: 1134744
URL: http://svn.apache.org/viewvc?rev=1134744&view=rev
Log:
basic GraphException moved in the main APIs package
Added:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java
(contents, props changed)
- copied, changed from r1134742,
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
Removed:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableDirectedGraph.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/StateMachine.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/exception/StateMachineException.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/ContractVerificationException.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/CycleException.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/HyperGraphException.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NegativeCycleException.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NoPathException.java
Copied:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java
(from r1134742,
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java)
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java?p2=commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java&p1=commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java&r1=1134742&r2=1134744&rev=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java
Sat Jun 11 20:21:47 2011
@@ -1,4 +1,4 @@
-package org.apache.commons.graph.exception;
+package org.apache.commons.graph;
/*
* Licensed to the Apache Software Foundation (ASF) under one
Propchange:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/GraphException.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
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=1134744&r1=1134743&r2=1134744&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 20:21:47 2011
@@ -19,8 +19,6 @@ package org.apache.commons.graph;
* under the License.
*/
-import org.apache.commons.graph.exception.GraphException;
-
/**
* The {@code MutableDirectedGraph} is a directed graph that supports the
addition and removal of
* {@link Vertex} and {@link Edge}s.
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
Sat Jun 11 20:21:47 2011
@@ -19,8 +19,6 @@ package org.apache.commons.graph;
* under the License.
*/
-import org.apache.commons.graph.exception.GraphException;
-
/**
* The {@code MutableGraph} is a graph that supports the addition and removal
of {@link Vertex} and {@link Edge}s.
*/
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
Sat Jun 11 20:21:47 2011
@@ -26,6 +26,7 @@ import java.util.Set;
import org.apache.commons.graph.DirectedGraph;
import org.apache.commons.graph.Edge;
+import org.apache.commons.graph.GraphException;
import org.apache.commons.graph.Vertex;
import org.apache.commons.graph.WeightedGraph;
import org.apache.commons.graph.WeightedPath;
@@ -33,7 +34,6 @@ import org.apache.commons.graph.algorith
import org.apache.commons.graph.algorithm.spanning.MinimumSpanningForest;
import org.apache.commons.graph.domain.basic.DirectedGraphImpl;
import org.apache.commons.graph.domain.basic.DirectedGraphWrapper;
-import org.apache.commons.graph.exception.GraphException;
/**
* Description of the Class
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/StateMachine.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/StateMachine.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/StateMachine.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/StateMachine.java
Sat Jun 11 20:21:47 2011
@@ -5,10 +5,10 @@ import java.util.HashSet;
import java.util.Map;
import java.util.Set;
+import org.apache.commons.graph.GraphException;
import org.apache.commons.graph.MutableDirectedGraph;
import org.apache.commons.graph.contract.Contract;
import org.apache.commons.graph.decorator.DDirectedGraph;
-import org.apache.commons.graph.exception.GraphException;
import org.apache.commons.graph.factory.GraphFactory;
/**
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/exception/StateMachineException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/exception/StateMachineException.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/exception/StateMachineException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/statemachine/exception/StateMachineException.java
Sat Jun 11 20:21:47 2011
@@ -1,6 +1,6 @@
package org.apache.commons.graph.domain.statemachine.exception;
-import org.apache.commons.graph.exception.GraphException;
+import org.apache.commons.graph.GraphException;
/**
* Description of the Class
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/ContractVerificationException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/ContractVerificationException.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/ContractVerificationException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/ContractVerificationException.java
Sat Jun 11 20:21:47 2011
@@ -1,5 +1,7 @@
package org.apache.commons.graph.exception;
+import org.apache.commons.graph.GraphException;
+
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/CycleException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/CycleException.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/CycleException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/CycleException.java
Sat Jun 11 20:21:47 2011
@@ -1,5 +1,7 @@
package org.apache.commons.graph.exception;
+import org.apache.commons.graph.GraphException;
+
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/HyperGraphException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/HyperGraphException.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/HyperGraphException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/HyperGraphException.java
Sat Jun 11 20:21:47 2011
@@ -1,5 +1,7 @@
package org.apache.commons.graph.exception;
+import org.apache.commons.graph.GraphException;
+
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NegativeCycleException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NegativeCycleException.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NegativeCycleException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NegativeCycleException.java
Sat Jun 11 20:21:47 2011
@@ -1,5 +1,7 @@
package org.apache.commons.graph.exception;
+import org.apache.commons.graph.GraphException;
+
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NoPathException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NoPathException.java?rev=1134744&r1=1134743&r2=1134744&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NoPathException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/NoPathException.java
Sat Jun 11 20:21:47 2011
@@ -1,5 +1,7 @@
package org.apache.commons.graph.exception;
+import org.apache.commons.graph.GraphException;
+
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file