| author | Florian Waibel | 2011-10-21 14:11:07 (EDT) |
|---|---|---|
| committer | Christopher Frost | 2011-10-21 14:11:07 (EDT) |
| commit | 5a0afb416fee4f5d123059424b032c1c528704fd (patch) (side-by-side diff) | |
| tree | c5338e359b8f647b00c090a274159325ebc6918f | |
| parent | 42d62d5f8e5dd3564bad384119004d254d939636 (diff) | |
| download | org.eclipse.virgo.util-5a0afb416fee4f5d123059424b032c1c528704fd.zip org.eclipse.virgo.util-5a0afb416fee4f5d123059424b032c1c528704fd.tar.gz org.eclipse.virgo.util-5a0afb416fee4f5d123059424b032c1c528704fd.tar.bz2 | |
ASSIGNED - bug 358697: [Subsystems] DAG interface and implementation https://bugs.eclipse.org/bugs/show_bug.cgi?id=358697 - Added the appropriate license header to new files.
6 files changed, 50 insertions, 4 deletions
diff --git a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/DirectedAcyclicGraph.java b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/DirectedAcyclicGraph.java index 12e4391..7bec6d7 100644 --- a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/DirectedAcyclicGraph.java +++ b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/DirectedAcyclicGraph.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2011 VMware Inc. and others + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VMware Inc. - initial contribution (Tree.java) + * EclipseSource - reworked from generic tree to DAG (Bug 358697) + *******************************************************************************/ package org.eclipse.virgo.util.common; diff --git a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/GraphNode.java b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/GraphNode.java index 598e51c..eefb865 100644 --- a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/GraphNode.java +++ b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/GraphNode.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2011 VMware Inc. and others + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VMware Inc. - initial contribution (Tree.java) + * EclipseSource - reworked from generic tree to DAG (Bug 358697) + *******************************************************************************/ package org.eclipse.virgo.util.common; diff --git a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeDirectedAcyclicGraph.java b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeDirectedAcyclicGraph.java index 7b827c8..03aa4da 100644 --- a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeDirectedAcyclicGraph.java +++ b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeDirectedAcyclicGraph.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2011 VMware Inc. and others + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VMware Inc. - initial contribution (ThreadSafeArrayListTree.java) + * EclipseSource - reworked from generic tree to DAG (Bug 358697) + *******************************************************************************/ package org.eclipse.virgo.util.common; diff --git a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeGraphNode.java b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeGraphNode.java index 7b7a221..ac35556 100644 --- a/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeGraphNode.java +++ b/org.eclipse.virgo.util.common/src/main/java/org/eclipse/virgo/util/common/ThreadSafeGraphNode.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2011 VMware Inc. and others + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VMware Inc. - initial contribution (ThreadSafeArrayListTree.java) + * EclipseSource - reworked from generic tree to DAG (Bug 358697) + *******************************************************************************/ package org.eclipse.virgo.util.common; diff --git a/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeAcyclicDirectedGraphTests.java b/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeAcyclicDirectedGraphTests.java index 69e36f0..f181dd2 100644 --- a/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeAcyclicDirectedGraphTests.java +++ b/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeAcyclicDirectedGraphTests.java @@ -1,12 +1,13 @@ /******************************************************************************* - * Copyright (c) 2008, 2010 VMware Inc. + * Copyright (c) 2011 VMware Inc. and others * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * VMware Inc. - initial contribution + * VMware Inc. - initial contribution (ThreadSafeArrayListTreeTests.java) + * EclipseSource - reworked from generic tree to DAG (Bug 358697) *******************************************************************************/ package org.eclipse.virgo.util.common; diff --git a/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeGraphNodeTests.java b/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeGraphNodeTests.java index 8c9dc76..6632cac 100644 --- a/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeGraphNodeTests.java +++ b/org.eclipse.virgo.util.common/src/test/java/org/eclipse/virgo/util/common/ThreadSafeGraphNodeTests.java @@ -1,12 +1,13 @@ /******************************************************************************* - * Copyright (c) 2008, 2010 VMware Inc. + * Copyright (c) 2011 VMware Inc. and others * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * VMware Inc. - initial contribution + * VMware Inc. - initial contribution (ThreadSafeArrayListTreeTests.java) + * EclipseSource - reworked from generic tree to DAG (Bug 358697) *******************************************************************************/ package org.eclipse.virgo.util.common; |

