Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2E63A6A0E for ; Sat, 11 Jun 2011 15:35:21 +0000 (UTC) Received: (qmail 95979 invoked by uid 500); 11 Jun 2011 15:35:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 95929 invoked by uid 500); 11 Jun 2011 15:35:20 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 95922 invoked by uid 99); 11 Jun 2011 15:35:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Jun 2011 15:35:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Jun 2011 15:35:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 62DC523889B2; Sat, 11 Jun 2011 15:34:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1134672 [1/2] - in /commons/sandbox/graph/trunk/src: main/java/org/apache/commons/graph/ main/java/org/apache/commons/graph/algorithm/dataflow/ main/java/org/apache/commons/graph/algorithm/path/ main/java/org/apache/commons/graph/algorithm... Date: Sat, 11 Jun 2011 15:34:46 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110611153447.62DC523889B2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Sat Jun 11 15:34:43 2011 New Revision: 1134672 URL: http://svn.apache.org/viewvc?rev=1134672&view=rev Log: fixed ASL2.0 header, added where missing Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Edge.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java 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/Named.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Vertex.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowEquations.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowSolutions.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPairsShortestPath.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPaths.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathIterator.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathListener.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/CostSearch.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/DFS.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/Visitor.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/VisitorAdapter.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/spanning/MinimumSpanningForest.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/Label.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/PathImpl.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/VertexPair.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Acyclic.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/AcyclicContract.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Contract.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/basic/DirectedGraphImpl.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphWrapper.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/GraphWrapper.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/WeightedGraphWrapper.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/Dependency.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyGraph.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVertex.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVisitor.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/exception/CircularDependencyException.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ClassVertex.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ImportEdge.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/JDependGraph.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/OwnershipEdge.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/PackageVertex.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/GraphException.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 commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/factory/GraphFactory.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/search/CostSearch.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/search/DFS.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/search/Visitor.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/visualize/Colored.java commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/visualize/TouchGraph.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/DirGraphTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/GraphTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/UndirGraphTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/WeightedGraphTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/algorithm/dataflow/DataFlowSolutionsTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/algorithm/dataflow/MockDataFlowEq.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/algorithm/path/AllPairsTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/algorithm/path/AllPathsTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/algorithm/spanning/MinimumSpanningForestTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/algorithm/util/LabelTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/contract/AcyclicContractTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/contract/DAGTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/decorator/ShortestPathTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/decorator/TransposeTest.java commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/domain/dependency/DependencyTest.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=1134672&r1=1134671&r2=1134672&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 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001-2011 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Set; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Edge.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Edge.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Edge.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Edge.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001-2011 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001-2011 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Set; 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=1134672&r1=1134671&r2=1134672&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 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import org.apache.commons.graph.exception.*; 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=1134672&r1=1134671&r2=1134672&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 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import org.apache.commons.graph.exception.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Named.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Named.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Named.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Named.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + /** * Description of the Interface */ Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.List; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001-2011 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Vertex.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Vertex.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Vertex.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Vertex.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001-2011 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001-2011 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedGraph.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedPath.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowEquations.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowEquations.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowEquations.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowEquations.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.algorithm.dataflow; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.BitSet; import org.apache.commons.graph.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowSolutions.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowSolutions.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowSolutions.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/dataflow/DataFlowSolutions.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.algorithm.dataflow; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.Map; import java.util.BitSet; import java.util.HashMap; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPairsShortestPath.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPairsShortestPath.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPairsShortestPath.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPairsShortestPath.java Sat Jun 11 15:34:43 2011 @@ -1,25 +1,22 @@ package org.apache.commons.graph.algorithm.path; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * AllPairs solves the All Points Shortest Path problem for a DirectedGraph. (If - * it is weighted, it will do shortest path by weight. Otherwise shortest path - * by jumps.) Uses Floyd's Algorithm. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Set; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPaths.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPaths.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPaths.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/AllPaths.java Sat Jun 11 15:34:43 2011 @@ -1,25 +1,22 @@ package org.apache.commons.graph.algorithm.path; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * AllPaths finds for each pair of vertices, {i, j} the set of - * all potential paths between them. (Unrolling loops by a set - * amount. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Map; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathIterator.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathIterator.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathIterator.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathIterator.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.algorithm.path; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.List; import java.util.Iterator; import java.util.LinkedList; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathListener.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathListener.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathListener.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/path/PathListener.java Sat Jun 11 15:34:43 2011 @@ -1,26 +1,22 @@ package org.apache.commons.graph.algorithm.path; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * PathListener + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 * - * This interface is passed into the AllPaths algorithm, and - * is notified of all qualifing paths. + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import org.apache.commons.graph.Path; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/CostSearch.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/CostSearch.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/CostSearch.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/CostSearch.java Sat Jun 11 15:34:43 2011 @@ -1,24 +1,22 @@ package org.apache.commons.graph.algorithm.search; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * This is a Cost searching algorithm. It will basically follow edges/paths with - * minimal cost first, and then go to the later costs. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.HashMap; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/DFS.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/DFS.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/DFS.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/DFS.java Sat Jun 11 15:34:43 2011 @@ -1,24 +1,22 @@ package org.apache.commons.graph.algorithm.search; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * This class does a Depth First Search. It visits all of the children nodes - * before moving to the siblling nodes. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Map; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/Visitor.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/Visitor.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/Visitor.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/Visitor.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph.algorithm.search; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import org.apache.commons.graph.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/VisitorAdapter.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/VisitorAdapter.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/VisitorAdapter.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/search/VisitorAdapter.java Sat Jun 11 15:34:43 2011 @@ -1,18 +1,22 @@ package org.apache.commons.graph.algorithm.search; + /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import org.apache.commons.graph.Edge; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/spanning/MinimumSpanningForest.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/spanning/MinimumSpanningForest.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/spanning/MinimumSpanningForest.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/spanning/MinimumSpanningForest.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.algorithm.spanning; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.*; import org.apache.commons.graph.exception.*; import org.apache.commons.graph.decorator.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/Label.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/Label.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/Label.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/Label.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.algorithm.util; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + public class Label { private Label root = null; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/PathImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/PathImpl.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/PathImpl.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/PathImpl.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.algorithm.util; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.List; import java.util.ArrayList; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/VertexPair.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/VertexPair.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/VertexPair.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/algorithm/util/VertexPair.java Sat Jun 11 15:34:43 2011 @@ -1,27 +1,22 @@ package org.apache.commons.graph.algorithm.util; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -/** - * VertexPair + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 * - * This is a tuple of two vertices which is capable - * of storing things in a Hashtable. + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import org.apache.commons.graph.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Acyclic.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Acyclic.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Acyclic.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Acyclic.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.contract; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + /** * Description of the Interface */ Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/AcyclicContract.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/AcyclicContract.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/AcyclicContract.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/AcyclicContract.java Sat Jun 11 15:34:43 2011 @@ -1,20 +1,24 @@ package org.apache.commons.graph.contract; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ + import java.util.Iterator; import org.apache.commons.graph.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Contract.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Contract.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Contract.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/contract/Contract.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.contract; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.*; import org.apache.commons.graph.exception.*; 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=1134672&r1=1134671&r2=1134672&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 15:34:43 2011 @@ -1,20 +1,24 @@ package org.apache.commons.graph.decorator; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ + import java.util.HashMap; import java.util.Iterator; import java.util.Map; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphImpl.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphImpl.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphImpl.java Sat Jun 11 15:34:43 2011 @@ -1,20 +1,24 @@ package org.apache.commons.graph.domain.basic; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ + import java.lang.reflect.*; import java.util.Set; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphWrapper.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphWrapper.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphWrapper.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/DirectedGraphWrapper.java Sat Jun 11 15:34:43 2011 @@ -1,24 +1,22 @@ package org.apache.commons.graph.domain.basic; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * DirectedGraphWrapper This is a superclass to all wrappers that work over - * DirectedGraphs. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Set; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/GraphWrapper.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/GraphWrapper.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/GraphWrapper.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/GraphWrapper.java Sat Jun 11 15:34:43 2011 @@ -1,8 +1,22 @@ package org.apache.commons.graph.domain.basic; -/** - * GraphWrapper This is a superclass of all Wrapper implementations. It - * basically does a redirection to the graph. +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Set; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java Sat Jun 11 15:34:43 2011 @@ -1,19 +1,22 @@ package org.apache.commons.graph.domain.basic; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Set; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/WeightedGraphWrapper.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/WeightedGraphWrapper.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/WeightedGraphWrapper.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/WeightedGraphWrapper.java Sat Jun 11 15:34:43 2011 @@ -1,23 +1,22 @@ package org.apache.commons.graph.domain.basic; /* - * Copyright 2001,2004 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * This is a simple wrapper to wrap around a graph, and create a weighted graph. + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ import java.util.Map; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/Dependency.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/Dependency.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/Dependency.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/Dependency.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.dependency; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.*; /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyGraph.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyGraph.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyGraph.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyGraph.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.dependency; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.*; import org.apache.commons.graph.contract.*; import org.apache.commons.graph.exception.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVertex.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVertex.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVertex.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVertex.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.dependency; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.*; /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVisitor.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVisitor.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVisitor.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/DependencyVisitor.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.dependency; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.List; import java.util.LinkedList; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/exception/CircularDependencyException.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/exception/CircularDependencyException.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/exception/CircularDependencyException.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/dependency/exception/CircularDependencyException.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.dependency.exception; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.exception.*; /** Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ClassVertex.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ClassVertex.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ClassVertex.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ClassVertex.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.jdepend; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.awt.Color; import jdepend.framework.*; Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ImportEdge.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ImportEdge.java?rev=1134672&r1=1134671&r2=1134672&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ImportEdge.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/jdepend/ImportEdge.java Sat Jun 11 15:34:43 2011 @@ -1,5 +1,24 @@ package org.apache.commons.graph.domain.jdepend; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.graph.*; import jdepend.framework.*;