|
From: <cap...@us...> - 2006-12-07 17:26:31
|
Revision: 11
http://svn.sourceforge.net/parakeet/?rev=11&view=rev
Author: captain5050
Date: 2006-12-07 09:26:30 -0800 (Thu, 07 Dec 2006)
Log Message:
-----------
Add license info to files
Modified Paths:
--------------
trunk/Makefile
trunk/bin/parakeet
trunk/bin/test
trunk/src/net/izno/parakeet/CodeRunner.java
trunk/src/net/izno/parakeet/HIRGenerator.java
trunk/src/net/izno/parakeet/KeyConstant.java
trunk/src/net/izno/parakeet/OpcodeDecoder.java
trunk/src/net/izno/parakeet/PBC.java
trunk/src/net/izno/parakeet/PMC.java
trunk/src/net/izno/parakeet/Parakeet.java
trunk/src/net/izno/parakeet/ResolveHelper.java
trunk/src/net/izno/parakeet/SegmentData.java
trunk/src/net/izno/parakeet/Subroutine.java
trunk/src/net/izno/parakeet/ops/Bitwise.java
trunk/src/net/izno/parakeet/ops/Core.java
trunk/src/net/izno/parakeet/ops/Debug.java
trunk/src/net/izno/parakeet/ops/Dotgnu.java
trunk/src/net/izno/parakeet/ops/Experimental.java
trunk/src/net/izno/parakeet/ops/IO.java
trunk/src/net/izno/parakeet/ops/Math.java
trunk/src/net/izno/parakeet/ops/Object.java
trunk/src/net/izno/parakeet/ops/PMC.java
trunk/src/net/izno/parakeet/ops/Pic.java
trunk/src/net/izno/parakeet/ops/Python.java
trunk/src/net/izno/parakeet/ops/Regcomp.java
trunk/src/net/izno/parakeet/ops/Regload.java
trunk/src/net/izno/parakeet/ops/Stack.java
trunk/src/net/izno/parakeet/ops/String.java
trunk/src/net/izno/parakeet/ops/System.java
trunk/src/net/izno/parakeet/ops/Variable.java
trunk/src/net/izno/parakeet/pmc/Array.java
trunk/src/net/izno/parakeet/pmc/FixedIntegerArray.java
trunk/src/net/izno/parakeet/pmc/Float.java
trunk/src/net/izno/parakeet/pmc/Hash.java
trunk/src/net/izno/parakeet/pmc/Integer.java
trunk/src/net/izno/parakeet/pmc/Key.java
trunk/src/net/izno/parakeet/pmc/LexInfo.java
trunk/src/net/izno/parakeet/pmc/LexPad.java
trunk/src/net/izno/parakeet/pmc/NameSpace.java
trunk/src/net/izno/parakeet/pmc/Null.java
trunk/src/net/izno/parakeet/pmc/ParrotIO.java
trunk/src/net/izno/parakeet/pmc/ParrotInterpreter.java
trunk/src/net/izno/parakeet/pmc/ResizablePMCArray.java
trunk/src/net/izno/parakeet/pmc/ResizableStringArray.java
trunk/src/net/izno/parakeet/pmc/String.java
trunk/src/net/izno/parakeet/pmc/Sub.java
trunk/src/net/izno/parakeet/pmc/Undef.java
trunk/src/support/generate_resolve.sh
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/Makefile 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,9 @@
+# This file is part of the parakeet (http://parakeet.sourceforge.net/)
+# project distributed under the Common Public License (CPL).
+# A copy of the license is included in the distribution, and is also
+# available at http://www.opensource.org/licenses/cpl1.0.php
+#
+# (C) Copyright The University of Manchester 2006
all: build
Modified: trunk/bin/parakeet
===================================================================
--- trunk/bin/parakeet 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/bin/parakeet 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,8 @@
#!/bin/bash
-
+# This file is part of the parakeet (http://parakeet.sourceforge.net/)
+# project distributed under the Common Public License (CPL).
+# A copy of the license is included in the distribution, and is also
+# available at http://www.opensource.org/licenses/cpl1.0.php
+#
+# (C) Copyright The University of Manchester 2006
$RVM_ROOT/rvm/bin/rvm net.izno.parakeet.Parakeet $@
Modified: trunk/bin/test
===================================================================
--- trunk/bin/test 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/bin/test 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,4 +1,10 @@
#!/usr/bin/ruby
+# This file is part of the parakeet (http://parakeet.sourceforge.net/)
+# project distributed under the Common Public License (CPL).
+# A copy of the license is included in the distribution, and is also
+# available at http://www.opensource.org/licenses/cpl1.0.php
+#
+# (C) Copyright The University of Manchester 2006
require "set"
Modified: trunk/src/net/izno/parakeet/CodeRunner.java
===================================================================
--- trunk/src/net/izno/parakeet/CodeRunner.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/CodeRunner.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import com.ibm.jikesrvm.VM_Magic;
Modified: trunk/src/net/izno/parakeet/HIRGenerator.java
===================================================================
--- trunk/src/net/izno/parakeet/HIRGenerator.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/HIRGenerator.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import com.ibm.jikesrvm.opt.ir.OPT_HIRGenerator;
Modified: trunk/src/net/izno/parakeet/KeyConstant.java
===================================================================
--- trunk/src/net/izno/parakeet/KeyConstant.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/KeyConstant.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
public class KeyConstant {
Modified: trunk/src/net/izno/parakeet/OpcodeDecoder.java
===================================================================
--- trunk/src/net/izno/parakeet/OpcodeDecoder.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/OpcodeDecoder.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import java.util.List;
Modified: trunk/src/net/izno/parakeet/PBC.java
===================================================================
--- trunk/src/net/izno/parakeet/PBC.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/PBC.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import java.io.FileInputStream;
Modified: trunk/src/net/izno/parakeet/PMC.java
===================================================================
--- trunk/src/net/izno/parakeet/PMC.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/PMC.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import java.util.Map;
Modified: trunk/src/net/izno/parakeet/Parakeet.java
===================================================================
--- trunk/src/net/izno/parakeet/Parakeet.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/Parakeet.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import java.io.FileNotFoundException;
Modified: trunk/src/net/izno/parakeet/ResolveHelper.java
===================================================================
--- trunk/src/net/izno/parakeet/ResolveHelper.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ResolveHelper.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import java.util.Map;
Modified: trunk/src/net/izno/parakeet/SegmentData.java
===================================================================
--- trunk/src/net/izno/parakeet/SegmentData.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/SegmentData.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import java.nio.ByteBuffer;
Modified: trunk/src/net/izno/parakeet/Subroutine.java
===================================================================
--- trunk/src/net/izno/parakeet/Subroutine.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/Subroutine.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet;
import com.ibm.jikesrvm.classloader.VM_NormalMethod;
Modified: trunk/src/net/izno/parakeet/ops/Bitwise.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Bitwise.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Bitwise.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Core.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Core.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Core.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Debug.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Debug.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Debug.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import net.izno.parakeet.Parakeet;
Modified: trunk/src/net/izno/parakeet/ops/Dotgnu.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Dotgnu.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Dotgnu.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import net.izno.parakeet.Parakeet;
Modified: trunk/src/net/izno/parakeet/ops/Experimental.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Experimental.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Experimental.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import net.izno.parakeet.Parakeet;
Modified: trunk/src/net/izno/parakeet/ops/IO.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/IO.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/IO.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Math.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Math.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Math.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Object.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Object.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Object.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operand;
Modified: trunk/src/net/izno/parakeet/ops/PMC.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/PMC.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/PMC.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Pic.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Pic.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Pic.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import net.izno.parakeet.Parakeet;
Modified: trunk/src/net/izno/parakeet/ops/Python.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Python.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Python.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Regcomp.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Regcomp.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Regcomp.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operators;
Modified: trunk/src/net/izno/parakeet/ops/Regload.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Regload.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Regload.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operand;
Modified: trunk/src/net/izno/parakeet/ops/Stack.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Stack.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Stack.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import net.izno.parakeet.Parakeet;
Modified: trunk/src/net/izno/parakeet/ops/String.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/String.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/String.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_Operand;
Modified: trunk/src/net/izno/parakeet/ops/System.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/System.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/System.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import net.izno.parakeet.Parakeet;
Modified: trunk/src/net/izno/parakeet/ops/Variable.java
===================================================================
--- trunk/src/net/izno/parakeet/ops/Variable.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/ops/Variable.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.ops;
import com.ibm.jikesrvm.opt.ir.OPT_RegisterOperand;
Modified: trunk/src/net/izno/parakeet/pmc/Array.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Array.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Array.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/FixedIntegerArray.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/FixedIntegerArray.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/FixedIntegerArray.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Float.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Float.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Float.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Hash.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Hash.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Hash.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Integer.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Integer.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Integer.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Key.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Key.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Key.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/LexInfo.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/LexInfo.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/LexInfo.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
public class LexInfo extends Hash {
Modified: trunk/src/net/izno/parakeet/pmc/LexPad.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/LexPad.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/LexPad.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
public class LexPad extends Hash {
Modified: trunk/src/net/izno/parakeet/pmc/NameSpace.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/NameSpace.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/NameSpace.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Null.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Null.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Null.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/ParrotIO.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/ParrotIO.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/ParrotIO.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/ParrotInterpreter.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/ParrotInterpreter.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/ParrotInterpreter.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/ResizablePMCArray.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/ResizablePMCArray.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/ResizablePMCArray.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/ResizableStringArray.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/ResizableStringArray.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/ResizableStringArray.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/String.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/String.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/String.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Sub.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Sub.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Sub.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/net/izno/parakeet/pmc/Undef.java
===================================================================
--- trunk/src/net/izno/parakeet/pmc/Undef.java 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/net/izno/parakeet/pmc/Undef.java 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,3 +1,11 @@
+/*
+ * This file is part of the parakeet (http://parakeet.sourceforge.net/)
+ * project distributed under the Common Public License (CPL).
+ * A copy of the license is included in the distribution, and is also
+ * available at http://www.opensource.org/licenses/cpl1.0.php
+ *
+ * (C) Copyright The University of Manchester 2006
+ */
package net.izno.parakeet.pmc;
import net.izno.parakeet.PMC;
Modified: trunk/src/support/generate_resolve.sh
===================================================================
--- trunk/src/support/generate_resolve.sh 2006-12-07 17:25:33 UTC (rev 10)
+++ trunk/src/support/generate_resolve.sh 2006-12-07 17:26:30 UTC (rev 11)
@@ -1,4 +1,10 @@
#!/bin/bash
+# This file is part of the parakeet (http://parakeet.sourceforge.net/)
+# project distributed under the Common Public License (CPL).
+# A copy of the license is included in the distribution, and is also
+# available at http://www.opensource.org/licenses/cpl1.0.php
+#
+# (C) Copyright The University of Manchester 2006
echo -e "package net.izno.parakeet;"
echo
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|