You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ap...@apache.org on 2011/05/12 21:26:03 UTC

svn commit: r1102435 [1/8] - in /incubator/ognl/trunk: ./ docbook/ docbook/style/ docs/ src/etc/ src/main/java/org/apache/commons/ognl/ src/main/java/org/apache/commons/ognl/enhance/ src/main/java/org/apache/commons/ognl/internal/ src/test/java/org/apa...

Author: apetrelli
Date: Thu May 12 19:25:49 2011
New Revision: 1102435

URL: http://svn.apache.org/viewvc?rev=1102435&view=rev
Log:
OGNL-2
Updated source headers to all files.

Added:
    incubator/ognl/trunk/src/etc/
    incubator/ognl/trunk/src/etc/header.txt
Modified:
    incubator/ognl/trunk/build.properties
    incubator/ognl/trunk/build.xml
    incubator/ognl/trunk/docbook.properties
    incubator/ognl/trunk/docbook.xml
    incubator/ognl/trunk/docbook/DeveloperGuide.xml
    incubator/ognl/trunk/docbook/LanguageGuide.xml
    incubator/ognl/trunk/docbook/style/docbook.css
    incubator/ognl/trunk/docbook/style/fop-xsl.template
    incubator/ognl/trunk/docbook/style/html-xsl.template
    incubator/ognl/trunk/docs/index.html
    incubator/ognl/trunk/osbuild.xml
    incubator/ognl/trunk/pom.xml
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAdd.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAnd.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAssign.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitAnd.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitNegate.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitOr.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTChain.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTConst.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTCtor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTDivide.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEq.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEval.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreater.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreaterEq.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTIn.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTInstanceof.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTKeyValue.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTLess.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTLessEq.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTList.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTMap.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTMethod.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTMultiply.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTNegate.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTNot.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTNotEq.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTNotIn.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTOr.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTProject.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTProperty.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTRemainder.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTRootVarRef.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTSelect.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTSelectFirst.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTSelectLast.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTSequence.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTShiftLeft.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTShiftRight.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTStaticField.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTStaticMethod.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTSubtract.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTTest.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTThisVarRef.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTUnsignedShiftRight.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTVarRef.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTXor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ArrayElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ArrayPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/BooleanExpression.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ClassCacheInspector.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ClassResolver.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/CollectionElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ComparisonExpression.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/DefaultClassResolver.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/DefaultMemberAccess.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/DefaultTypeConverter.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/DynamicSubscript.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/EnumerationElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/EnumerationIterator.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/EnumerationPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/Evaluation.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/EvaluationPool.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ExpressionNode.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ExpressionSyntaxException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/InappropriateExpressionException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/IntHashMap.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/IteratorElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/IteratorEnumeration.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/IteratorPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/JJTOgnlParserState.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaCharStream.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ListPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/MapElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/MapPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/MemberAccess.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/MethodAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/MethodFailedException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/NoSuchPropertyException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/Node.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/NodeType.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/NullHandler.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/NumberElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/NumericExpression.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/NumericTypes.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ObjectArrayPool.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ObjectElementsAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ObjectIndexedPropertyDescriptor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ObjectMethodAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ObjectNullHandler.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ObjectPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/Ognl.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlContext.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlInvokePermission.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlOps.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlParser.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlParserConstants.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlParserTokenManager.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlParserTreeConstants.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ParseException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/PropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/SetPropertyAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/SimpleNode.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/Token.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/TokenMgrError.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/TypeConverter.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/ContextClassLoader.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/EnhancedClassLoader.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/ExpressionAccessor.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/ExpressionCompiler.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/LocalReference.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/LocalReferenceImpl.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/OgnlExpressionCompiler.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/OrderedReturn.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/enhance/UnsupportedCompilationException.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ClassCache.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ClassCacheImpl.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/Entry.java
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ognl.jj
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ognl.jjt
    incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/package.html
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/InExpressionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/TestOgnlException.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/TestOgnlRuntime.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ASTChainTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ASTMethodTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ASTPropertyTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ArithmeticAndLogicalOperatorsTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ArrayCreationTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ArrayElementsTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ClassMethodTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/CollectionDirectPropertyTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/CompilingPropertyAccessor.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ConstantTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ConstantTreeTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ContextVariableTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/CorrectedObjectNullHandler.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/GenericsTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/IndexAccessTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/IndexedPropertyTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/InheritedMethodsTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/InterfaceInheritanceTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/LambdaExpressionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/MapCreationTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/MemberAccessTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/MethodTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/MethodWithConversionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/NestedMethodTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/NullHandlerTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/NullStringCatenationTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/NumberFormatExceptionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/NumericConversionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ObjectIndexedPropertyTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ObjectIndexedTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/OgnlTestCase.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/OperatorTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/Performance.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PrimitiveArrayTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PrimitiveNullHandlingTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PrivateAccessorTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PrivateMemberTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ProjectionSelectionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertyArithmeticAndLogicalOperatorsTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertyNotFoundTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertyTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ProtectedInnerClassTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/QuotingTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/SetterTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/SetterWithConversionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/ShortCircuitingExpressionTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/SimpleNavigationChainTreeTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/SimplePropertyTreeTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/StaticsAndConstructorsTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/accessors/ListPropertyAccessorTest.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/enhance/TestExpressionCompiler.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BaseBean.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BaseGeneric.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BaseIndexed.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BaseObjectIndexed.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BaseSyntheticObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Bean1.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Bean2.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Bean3.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BeanProvider.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BeanProviderAccessor.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/BeanProviderImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Component.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/ComponentImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/ComponentSubclass.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Copy.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/CorrectedObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Cracker.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Entry.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/EvenOdd.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/FirstBean.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/FormComponentImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/FormImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GameGeneric.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GameGenericObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GenericCracker.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GenericObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GenericRoot.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GenericService.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GenericServiceImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/GetterMethods.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/IComponent.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/IContentProvider.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/IForm.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/IFormComponent.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/ITreeContentProvider.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Indexed.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/IndexedMapObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/IndexedSetObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Inherited.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/ListSource.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/ListSourceImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/MenuItem.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Messages.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Model.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/MyMap.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/MyMapImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/ObjectIndexed.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/OtherObjectIndexed.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/PersonGenericObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/PropertyHolder.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Root.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SearchCriteria.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SearchTab.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SecondBean.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SetterReturns.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Simple.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SimpleEnum.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SimpleNumeric.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/SubclassSyntheticObject.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/TestClass.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/TestImpl.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/TestInherited1.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/TestInherited2.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/TestModel.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/TreeContentProvider.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/objects/Two.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/util/ContextClassLoader.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/util/EnhancedClassLoader.java
    incubator/ognl/trunk/src/test/java/org/apache/commons/ognl/test/util/NameFactory.java
    incubator/ognl/trunk/www/index.html
    incubator/ognl/trunk/www/project_tools.html

Modified: incubator/ognl/trunk/build.properties
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/build.properties?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/build.properties (original)
+++ incubator/ognl/trunk/build.properties Thu May 12 19:25:49 2011
@@ -1,3 +1,23 @@
+#
+# $Id$
+# 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.
+#
+
 name = ognl
 fullname = OGNL
 version = 2.7.2

Modified: incubator/ognl/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/build.xml?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/build.xml (original)
+++ incubator/ognl/trunk/build.xml Thu May 12 19:25:49 2011
@@ -1,3 +1,24 @@
+<!--
+
+    $Id$
+    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.
+
+-->
 <project name="ognl" default="jar" basedir="." >
 
     <import file="osbuild.xml" /> 

Modified: incubator/ognl/trunk/docbook.properties
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook.properties?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook.properties (original)
+++ incubator/ognl/trunk/docbook.properties Thu May 12 19:25:49 2011
@@ -1,3 +1,23 @@
+#
+# $Id$
+# 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.
+#
+
 #=======================================================================
 # DocBook XML processor setup
 #=======================================================================

Modified: incubator/ognl/trunk/docbook.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook.xml?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook.xml (original)
+++ incubator/ognl/trunk/docbook.xml Thu May 12 19:25:49 2011
@@ -1,4 +1,25 @@
 <?xml version="1.0"?>
+<!--
+
+    $Id$
+    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.
+
+-->
 
 <project name="ognl-docs" default="doc-docbook" basedir=".">
 

Modified: incubator/ognl/trunk/docbook/DeveloperGuide.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook/DeveloperGuide.xml?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook/DeveloperGuide.xml (original)
+++ incubator/ognl/trunk/docbook/DeveloperGuide.xml Thu May 12 19:25:49 2011
@@ -1,4 +1,25 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    $Id$
+    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.
+
+-->
 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
 <book>

Modified: incubator/ognl/trunk/docbook/LanguageGuide.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook/LanguageGuide.xml?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook/LanguageGuide.xml (original)
+++ incubator/ognl/trunk/docbook/LanguageGuide.xml Thu May 12 19:25:49 2011
@@ -1,4 +1,25 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    $Id$
+    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.
+
+-->
 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
 <book>

Modified: incubator/ognl/trunk/docbook/style/docbook.css
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook/style/docbook.css?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook/style/docbook.css (original)
+++ incubator/ognl/trunk/docbook/style/docbook.css Thu May 12 19:25:49 2011
@@ -1,3 +1,22 @@
+/**
+ * $Id$
+ * 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.
+ */
 body {
     background-color: #FFFFFF;
     font-family: Verdana, Helvetica, sans-serif;

Modified: incubator/ognl/trunk/docbook/style/fop-xsl.template
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook/style/fop-xsl.template?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook/style/fop-xsl.template (original)
+++ incubator/ognl/trunk/docbook/style/fop-xsl.template Thu May 12 19:25:49 2011
@@ -1,4 +1,25 @@
 <?xml version='1.0'?>
+<!--
+
+    $Id$
+    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.
+
+-->
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                 version='1.0'

Modified: incubator/ognl/trunk/docbook/style/html-xsl.template
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docbook/style/html-xsl.template?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docbook/style/html-xsl.template (original)
+++ incubator/ognl/trunk/docbook/style/html-xsl.template Thu May 12 19:25:49 2011
@@ -1,4 +1,25 @@
 <?xml version='1.0'?>
+<!--
+
+    $Id$
+    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.
+
+-->
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                 version='1.0'

Modified: incubator/ognl/trunk/docs/index.html
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/docs/index.html?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/docs/index.html (original)
+++ incubator/ognl/trunk/docs/index.html Thu May 12 19:25:49 2011
@@ -1,3 +1,24 @@
+<!--
+
+    $Id$
+    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.
+
+-->
 <p>
 OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects.
 You use the same expression for both getting and setting the value of a property.

Modified: incubator/ognl/trunk/osbuild.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/osbuild.xml?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/osbuild.xml (original)
+++ incubator/ognl/trunk/osbuild.xml Thu May 12 19:25:49 2011
@@ -1,3 +1,24 @@
+<!--
+
+    $Id$
+    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.
+
+-->
 <project name="os" default="compile" basedir=".">
 
     <path id="cp">

Modified: incubator/ognl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/pom.xml?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/pom.xml (original)
+++ incubator/ognl/trunk/pom.xml Thu May 12 19:25:49 2011
@@ -153,6 +153,16 @@
     </developer>
   </developers>
 
+  <pluginRepositories>
+  	<pluginRepository>
+  		<snapshots>
+  			<enabled>false</enabled>
+  		</snapshots>
+  		<id>mc-release</id>
+  		<name>Mathieu Carbou repository</name>
+  		<url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
+  	</pluginRepository>
+  </pluginRepositories>
   <dependencies>
     <dependency>
       <groupId>junit</groupId>
@@ -225,6 +235,24 @@
         <artifactId>maven-clean-plugin</artifactId>
         <version>2.4.1</version>
       </plugin>
+      <plugin>
+        <groupId>com.mycila.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <version>1.9.0</version>
+        <configuration>
+          <header>src/etc/header.txt</header>
+          <mapping>
+            <java>SLASHSTAR_STYLE</java>
+            <template>XML_STYLE</template>
+            <jj>SLASHSTAR_STYLE</jj>
+            <jjt>SLASHSTAR_STYLE</jjt>
+          </mapping>
+          <excludes>
+            <exclude>LICENSE.txt</exclude>
+            <exclude>NOTICE.txt</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
     <pluginManagement>
       <plugins>

Added: incubator/ognl/trunk/src/etc/header.txt
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/etc/header.txt?rev=1102435&view=auto
==============================================================================
--- incubator/ognl/trunk/src/etc/header.txt (added)
+++ incubator/ognl/trunk/src/etc/header.txt Thu May 12 19:25:49 2011
@@ -0,0 +1,17 @@
+$Id$
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAdd.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAdd.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAdd.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAdd.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.ExpressionCompiler;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAnd.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAnd.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAnd.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAnd.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.ExpressionCompiler;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAssign.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAssign.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAssign.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTAssign.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.OrderedReturn;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitAnd.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitAnd.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitAnd.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitAnd.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 /**

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitNegate.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitNegate.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitNegate.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitNegate.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 /**

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitOr.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitOr.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitOr.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTBitOr.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 /**

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTChain.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTChain.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTChain.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTChain.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-// --------------------------------------------------------------------------
-// Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-// All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// Redistributions of source code must retain the above copyright notice,
-// this list of conditions and the following disclaimer.
-// Redistributions in binary form must reproduce the above copyright
-// notice, this list of conditions and the following disclaimer in the
-// documentation and/or other materials provided with the distribution.
-// Neither the name of the Drew Davidson nor the names of its contributors
-// may be used to endorse or promote products derived from this software
-// without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-// DAMAGE.
-// --------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.ExpressionCompiler;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTConst.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTConst.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTConst.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTConst.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-// --------------------------------------------------------------------------
-// Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-// All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// Redistributions of source code must retain the above copyright notice,
-// this list of conditions and the following disclaimer.
-// Redistributions in binary form must reproduce the above copyright
-// notice, this list of conditions and the following disclaimer in the
-// documentation and/or other materials provided with the distribution.
-// Neither the name of the Drew Davidson nor the names of its contributors
-// may be used to endorse or promote products derived from this software
-// without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-// DAMAGE.
-// --------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.UnsupportedCompilationException;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTCtor.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTCtor.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTCtor.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTCtor.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-// --------------------------------------------------------------------------
-// Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-// All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// Redistributions of source code must retain the above copyright notice,
-// this list of conditions and the following disclaimer.
-// Redistributions in binary form must reproduce the above copyright
-// notice, this list of conditions and the following disclaimer in the
-// documentation and/or other materials provided with the distribution.
-// Neither the name of the Drew Davidson nor the names of its contributors
-// may be used to endorse or promote products derived from this software
-// without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-// DAMAGE.
-// --------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.ExpressionCompiler;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTDivide.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTDivide.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTDivide.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTDivide.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 /**

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEq.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEq.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEq.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEq.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEval.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEval.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEval.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTEval.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-// --------------------------------------------------------------------------
-// Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-// All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// Redistributions of source code must retain the above copyright notice,
-// this list of conditions and the following disclaimer.
-// Redistributions in binary form must reproduce the above copyright
-// notice, this list of conditions and the following disclaimer in the
-// documentation and/or other materials provided with the distribution.
-// Neither the name of the Drew Davidson nor the names of its contributors
-// may be used to endorse or promote products derived from this software
-// without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-// DAMAGE.
-// --------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.UnsupportedCompilationException;

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreater.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreater.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreater.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreater.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreaterEq.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreaterEq.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreaterEq.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTGreaterEq.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 

Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTIn.java
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTIn.java?rev=1102435&r1=1102434&r2=1102435&view=diff
==============================================================================
--- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTIn.java (original)
+++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/ASTIn.java Thu May 12 19:25:49 2011
@@ -1,33 +1,22 @@
-//--------------------------------------------------------------------------
-//	Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
-//  All rights reserved.
-//
-//	Redistribution and use in source and binary forms, with or without
-//  modification, are permitted provided that the following conditions are
-//  met:
-//
-//	Redistributions of source code must retain the above copyright notice,
-//  this list of conditions and the following disclaimer.
-//	Redistributions in binary form must reproduce the above copyright
-//  notice, this list of conditions and the following disclaimer in the
-//  documentation and/or other materials provided with the distribution.
-//	Neither the name of the Drew Davidson nor the names of its contributors
-//  may be used to endorse or promote products derived from this software
-//  without specific prior written permission.
-//
-//	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-//  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-//  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-//  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-//  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-//  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-//  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-//  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-//  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-//  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-//  DAMAGE.
-//--------------------------------------------------------------------------
+/*
+ * $Id$
+ * 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 org.apache.commons.ognl;
 
 import org.apache.commons.ognl.enhance.UnsupportedCompilationException;