You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/06/19 00:32:19 UTC

svn commit: r1351513 [1/3] - in /incubator/flex/trunk/modules/asc/src/java/macromedia/asc: embedding/ embedding/avmplus/ parser/ semantics/ util/

Author: cframpton
Date: Mon Jun 18 22:32:14 2012
New Revision: 1351513

URL: http://svn.apache.org/viewvc?rev=1351513&view=rev
Log:
Remove the Mountain View Compiler Company copyrights per mail from the author, Jeff Dyer, sent to <fl...@incubator.apache.org> mailing list on 6/18/2012.  [http://markmail.org/message/tuohxcpol6l6z4lg?q=Mountain+View+Compiler+Company+list:org%2Eapache%2Eincubator%2Eflex-dev&page=1].  

I did not remove the @author Jeff Dyer tags because the rest of the compiler still has them.

Modified:
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/Compiler.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockConstants.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockEmitter.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActivationBuilder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ByteCodeFactory.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ClassBuilder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/GlobalBuilder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ImportBuilder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/InstanceBuilder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/PackageBuilder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/RuntimeConstants.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ArgumentListNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/AttributeListNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryProgramNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BlockNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BoxNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BreakStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CallExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CaseLabelNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CatchClauseNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CharacterClasses.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassDefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassNameNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CoerceNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CommentNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ConditionalExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ContinueStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefaultXMLNamespaceNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DeleteExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DoStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyElementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ErrorNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Evaluator.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ExpressionStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FinallyClauseNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ForStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionCommonNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionDefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionNameNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionSignatureNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/GetExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/HasNextNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierErrorNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IfStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportDirectiveNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IncludeDirectiveNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IncrementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/InheritanceNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/InputBuffer.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/InterfaceDefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/InvokeNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LabeledStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ListErrorNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ListNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralArrayNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralBooleanNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralFieldNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralNullNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralNumberNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralObjectNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralRegExpNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralStringNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralXMLNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/LoadRegisterNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/MemberExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/MetaDataEvaluator.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/NamespaceDefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Node.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/NodeFactory.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/NodePrinter.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/PackageDefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/PackageIdentifiersNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/PackageNameNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ParameterNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ParenExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ParenListExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Parser.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/PragmaExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/PragmaNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ProgramNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/QualifiedExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/QualifiedIdentifierNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/RegisterNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/RestExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/RestParameterNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ReturnStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Scanner.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/SelectorNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/SetExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/StatementListNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/States.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/StoreRegisterNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/SuperExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/SuperStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/SwitchStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ThisExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ThrowStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ToObjectNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Token.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Tokens.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/TryStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/TypedIdentifierNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/UnaryExpressionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/UntypedVariableBindingNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/UseDirectiveNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/VariableBindingNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/VariableDefinitionNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/WhileStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/WithStatementNode.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/Builder.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/CodeGenerator.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/ConstantEvaluator.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/Emitter.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/FlowAnalyzer.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/FlowGraphEmitter.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/ObjectValue.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/ReferenceValue.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/Slot.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/Type.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/TypeValue.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/semantics/Value.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/util/Context.java
    incubator/flex/trunk/modules/asc/src/java/macromedia/asc/util/Qualifiers.java

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/Compiler.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/Compiler.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/Compiler.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/Compiler.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockConstants.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockConstants.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockConstants.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockConstants.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockEmitter.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockEmitter.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockEmitter.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActionBlockEmitter.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActivationBuilder.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActivationBuilder.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActivationBuilder.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ActivationBuilder.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ByteCodeFactory.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ByteCodeFactory.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ByteCodeFactory.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ByteCodeFactory.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ClassBuilder.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ClassBuilder.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ClassBuilder.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ClassBuilder.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/GlobalBuilder.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/GlobalBuilder.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/GlobalBuilder.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/GlobalBuilder.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ImportBuilder.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ImportBuilder.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ImportBuilder.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/ImportBuilder.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/InstanceBuilder.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/InstanceBuilder.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/InstanceBuilder.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/InstanceBuilder.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/PackageBuilder.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/PackageBuilder.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/PackageBuilder.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/PackageBuilder.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/RuntimeConstants.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/RuntimeConstants.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/RuntimeConstants.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/embedding/avmplus/RuntimeConstants.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.embedding.avmplus;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ArgumentListNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ArgumentListNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ArgumentListNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ArgumentListNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/AttributeListNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/AttributeListNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/AttributeListNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/AttributeListNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryExpressionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryExpressionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryExpressionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryExpressionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryProgramNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryProgramNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryProgramNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BinaryProgramNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BlockNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BlockNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BlockNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BlockNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BoxNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BoxNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BoxNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BoxNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BreakStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BreakStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BreakStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/BreakStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CallExpressionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CallExpressionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CallExpressionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CallExpressionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CaseLabelNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CaseLabelNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CaseLabelNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CaseLabelNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CatchClauseNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CatchClauseNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CatchClauseNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CatchClauseNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CharacterClasses.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CharacterClasses.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CharacterClasses.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CharacterClasses.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassDefinitionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassDefinitionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassDefinitionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassDefinitionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassNameNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassNameNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassNameNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ClassNameNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CoerceNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CoerceNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CoerceNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CoerceNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CommentNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CommentNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CommentNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/CommentNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ConditionalExpressionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ConditionalExpressionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ConditionalExpressionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ConditionalExpressionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ContinueStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ContinueStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ContinueStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ContinueStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefaultXMLNamespaceNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefaultXMLNamespaceNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefaultXMLNamespaceNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefaultXMLNamespaceNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefinitionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefinitionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefinitionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DefinitionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DeleteExpressionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DeleteExpressionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DeleteExpressionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DeleteExpressionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DoStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DoStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DoStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/DoStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyElementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyElementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyElementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyElementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/EmptyStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ErrorNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ErrorNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ErrorNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ErrorNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Evaluator.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Evaluator.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Evaluator.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/Evaluator.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ExpressionStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ExpressionStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ExpressionStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ExpressionStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FinallyClauseNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FinallyClauseNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FinallyClauseNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FinallyClauseNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ForStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ForStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ForStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ForStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionCommonNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionCommonNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionCommonNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionCommonNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionDefinitionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionDefinitionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionDefinitionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionDefinitionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionNameNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionNameNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionNameNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionNameNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionSignatureNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionSignatureNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionSignatureNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/FunctionSignatureNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/GetExpressionNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/GetExpressionNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/GetExpressionNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/GetExpressionNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/HasNextNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/HasNextNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/HasNextNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/HasNextNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierErrorNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierErrorNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierErrorNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierErrorNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IdentifierNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IfStatementNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IfStatementNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IfStatementNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/IfStatementNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportDirectiveNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportDirectiveNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportDirectiveNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportDirectiveNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;

Modified: incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportNode.java
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportNode.java?rev=1351513&r1=1351512&r2=1351513&view=diff
==============================================================================
--- incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportNode.java (original)
+++ incubator/flex/trunk/modules/asc/src/java/macromedia/asc/parser/ImportNode.java Mon Jun 18 22:32:14 2012
@@ -1,7 +1,18 @@
 /*
- * Written by Jeff Dyer
- * Copyright (c) 1998-2003 Mountain View Compiler Company
- * All rights reserved.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 
 package macromedia.asc.parser;