svn commit: r17832 - trunk/src/argouml-app/src/org/argouml/persistence
Linus Tolke <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: linus
Date: 2010-01-12 11:02:29-0800
New Revision: 17832
Modified:
trunk/src/argouml-app/src/org/argouml/persistence/AbstractFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/ArgoParser.java
trunk/src/argouml-app/src/org/argouml/persistence/ArgoTokenTable.java
trunk/src/argouml-app/src/org/argouml/persistence/DiagramMemberFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/FigEdgeHandler.java
trunk/src/argouml-app/src/org/argouml/persistence/MemberFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/ModelMemberFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/OffenderXMLHelper.java
trunk/src/argouml-app/src/org/argouml/persistence/OldModelMemberFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/OldZargoFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/OpenException.java
trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java
trunk/src/argouml-app/src/org/argouml/persistence/PersistenceException.java
trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java
trunk/src/argouml-app/src/org/argouml/persistence/PgmlUtility.java
trunk/src/argouml-app/src/org/argouml/persistence/PrivateHandler.java
trunk/src/argouml-app/src/org/argouml/persistence/ProfileConfigurationFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/ProjectFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/ProjectFileView.java
trunk/src/argouml-app/src/org/argouml/persistence/ResolvedCriticXMLHelper.java
trunk/src/argouml-app/src/org/argouml/persistence/SAXParserBase.java
trunk/src/argouml-app/src/org/argouml/persistence/SaveException.java
trunk/src/argouml-app/src/org/argouml/persistence/ToDoItemXMLHelper.java
trunk/src/argouml-app/src/org/argouml/persistence/TodoListMemberFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/TodoParser.java
trunk/src/argouml-app/src/org/argouml/persistence/TodoTokenTable.java
trunk/src/argouml-app/src/org/argouml/persistence/UmlFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/UmlVersionException.java
trunk/src/argouml-app/src/org/argouml/persistence/VersionException.java
trunk/src/argouml-app/src/org/argouml/persistence/XMLElement.java
trunk/src/argouml-app/src/org/argouml/persistence/XMLTokenTableBase.java
trunk/src/argouml-app/src/org/argouml/persistence/XmiExtensionParser.java
trunk/src/argouml-app/src/org/argouml/persistence/XmiFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/XmiFormatException.java
trunk/src/argouml-app/src/org/argouml/persistence/XmiInputStream.java
trunk/src/argouml-app/src/org/argouml/persistence/XmlFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/XmlInputStream.java
trunk/src/argouml-app/src/org/argouml/persistence/ZargoFilePersister.java
trunk/src/argouml-app/src/org/argouml/persistence/ZipFilePersister.java
Log:
Added EPL License header.
Modified: trunk/src/argouml-app/src/org/argouml/persistence/AbstractFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/AbstractFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/AbstractFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/AbstractFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2007 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ArgoParser.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ArgoParser.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ArgoParser.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ArgoParser.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ArgoTokenTable.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ArgoTokenTable.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ArgoTokenTable.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ArgoTokenTable.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/DiagramMemberFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/DiagramMemberFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/DiagramMemberFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/DiagramMemberFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/FigEdgeHandler.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/FigEdgeHandler.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/FigEdgeHandler.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/FigEdgeHandler.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * thn
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/MemberFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/MemberFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/MemberFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/MemberFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ModelMemberFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ModelMemberFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ModelMemberFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ModelMemberFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * thn
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/OffenderXMLHelper.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/OffenderXMLHelper.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/OffenderXMLHelper.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/OffenderXMLHelper.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * bobtarling
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/OldModelMemberFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/OldModelMemberFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/OldModelMemberFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/OldModelMemberFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/OldZargoFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/OldZargoFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/OldZargoFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/OldZargoFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/OpenException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/OpenException.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/OpenException.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/OpenException.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * mvw
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2005-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PersistenceException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PersistenceException.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PersistenceException.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PersistenceException.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * bobtarling
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * bobtarling
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2004-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PgmlUtility.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PgmlUtility.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PgmlUtility.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PgmlUtility.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * mvw
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2005-2007 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PrivateHandler.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PrivateHandler.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PrivateHandler.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PrivateHandler.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ProfileConfigurationFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ProfileConfigurationFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ProfileConfigurationFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ProfileConfigurationFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2007-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
@@ -499,4 +513,4 @@
}
}
-}
\ No newline at end of file
+}
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ProjectFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ProjectFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ProjectFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ProjectFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * linus
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2007 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ProjectFileView.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ProjectFileView.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ProjectFileView.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ProjectFileView.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * mvw
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ResolvedCriticXMLHelper.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ResolvedCriticXMLHelper.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ResolvedCriticXMLHelper.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ResolvedCriticXMLHelper.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/SAXParserBase.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/SAXParserBase.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/SAXParserBase.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/SAXParserBase.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/SaveException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/SaveException.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/SaveException.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/SaveException.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ToDoItemXMLHelper.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ToDoItemXMLHelper.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ToDoItemXMLHelper.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ToDoItemXMLHelper.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/TodoListMemberFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/TodoListMemberFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/TodoListMemberFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/TodoListMemberFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/TodoParser.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/TodoParser.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/TodoParser.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/TodoParser.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/TodoTokenTable.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/TodoTokenTable.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/TodoTokenTable.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/TodoTokenTable.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/UmlFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/UmlFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/UmlFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/UmlFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * thn
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2009 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/UmlVersionException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/UmlVersionException.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/UmlVersionException.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/UmlVersionException.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2006-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/VersionException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/VersionException.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/VersionException.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/VersionException.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * mvw
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XMLElement.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XMLElement.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XMLElement.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XMLElement.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * bobtarling
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XMLTokenTableBase.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XMLTokenTableBase.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XMLTokenTableBase.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XMLTokenTableBase.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * bobtarling
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XmiExtensionParser.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XmiExtensionParser.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XmiExtensionParser.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XmiExtensionParser.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XmiFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XmiFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XmiFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XmiFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
@@ -342,4 +356,4 @@
project.addMember(new ProjectMemberTodoList("", project));
}
}
-}
\ No newline at end of file
+}
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XmiFormatException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XmiFormatException.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XmiFormatException.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XmiFormatException.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 2006-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XmiInputStream.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XmiInputStream.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XmiInputStream.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XmiInputStream.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2007 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XmlFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XmlFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XmlFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XmlFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/XmlInputStream.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/XmlInputStream.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/XmlInputStream.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/XmlInputStream.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2006 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ZargoFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ZargoFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ZargoFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ZargoFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
Modified: trunk/src/argouml-app/src/org/argouml/persistence/ZipFilePersister.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/ZipFilePersister.java?view=diff&pathrev=17832&r1=17831&r2=17832
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/ZipFilePersister.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/ZipFilePersister.java 2010-01-12 11:02:29-0800
@@ -1,4 +1,18 @@
-// $Id$
+/* $Id$
+ *****************************************************************************
+ * Copyright (c) 2009 Contributors - see below
+ * 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:
+ * tfmorris
+ *****************************************************************************
+ *
+ * Some portions of this file was previously release using the BSD License:
+ */
+
// Copyright (c) 1996-2008 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2436740
To unsubscribe from this discussion, e-mail: [[email protected]].