[jboss-svn-commits] JBL Code SVN: r34263 - in labs/jbossrules/trunk/drools-clips/src: main/java/org/drools/clips/functions and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Jul 28 13:32:17 EDT 2010


Author: Rikkola
Date: 2010-07-28 13:32:15 -0400 (Wed, 28 Jul 2010)
New Revision: 34263

Modified:
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Appendable.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/BoolLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsLexer.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsParser.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsShell.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FloatLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Function.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionContext.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionHandlers.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/IntLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispForm.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/NullLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ParserHandler.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/PrintRouterContext.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SExpression.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringBuilderAppendable.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SymbolLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableContext.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableLispAtom.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/AssertFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BaseInfixFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BindFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CallFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CreateListFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/EqFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/GetFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/IfFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanOrEqFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MinusFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ModifyFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanOrEqFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MultiplyFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/NewFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PlusFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrintoutFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrognFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RetractFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ReturnFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RunFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SetFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SwitchFunction.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsConsequenceBuilder.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialect.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialectConfiguration.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsEvalBuilder.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsPredicateBuilder.java
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsReturnValueBuilder.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/PersonInterface.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/ClipsShellTest.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/CompiledFunctionsTest.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/FunctionFactoryTest.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/LhsClpParserTest.java
Log:
[#JBRULES-2577] License headers are missing for most of the files

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Appendable.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Appendable.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Appendable.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 public interface Appendable {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/BoolLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/BoolLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/BoolLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsLexer.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsLexer.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsLexer.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.
+ */
+
 // $ANTLR 3.1.1 /Users/porcelli/Documents/dev/drools-trunk/drools-clips/src/main/resources/org/drools/clips/Clips.g 2008-11-24 17:53:59
 
 	package org.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsParser.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsParser.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsParser.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.
+ */
+
 // $ANTLR 3.1.1 /Users/porcelli/Documents/dev/drools-trunk/drools-clips/src/main/resources/org/drools/clips/Clips.g 2008-11-24 17:53:58
 
 	package org.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsShell.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsShell.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ClipsShell.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,6 +1,22 @@
 /**
+ * Copyright 2010 JBoss Inc
  *
+ * Licensed 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.drools.clips;
 
 import java.io.ByteArrayOutputStream;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FloatLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FloatLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FloatLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Function.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Function.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/Function.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 public interface Function {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionContext.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionContext.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionContext.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import java.util.Map;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionHandlers.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionHandlers.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/FunctionHandlers.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import java.util.HashMap;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 /*

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/IntLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/IntLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/IntLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispForm.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispForm.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/LispForm.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/NullLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/NullLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/NullLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ParserHandler.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ParserHandler.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/ParserHandler.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import org.drools.lang.descr.FunctionDescr;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/PrintRouterContext.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/PrintRouterContext.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/PrintRouterContext.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import java.io.PrintStream;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SExpression.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SExpression.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SExpression.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringBuilderAppendable.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringBuilderAppendable.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringBuilderAppendable.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 public class StringBuilderAppendable implements Appendable {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/StringLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SymbolLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SymbolLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/SymbolLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableContext.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableContext.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableContext.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 public interface VariableContext {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableLispAtom.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableLispAtom.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/VariableLispAtom.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,4 +1,20 @@
 /**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/AssertFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/AssertFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/AssertFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BaseInfixFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BaseInfixFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BaseInfixFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BindFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BindFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/BindFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CallFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CallFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CallFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CreateListFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CreateListFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/CreateListFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/EqFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/EqFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/EqFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/GetFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/GetFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/GetFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/IfFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/IfFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/IfFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class LessThanFunction  extends BaseInfixFunction  {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanOrEqFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanOrEqFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/LessThanOrEqFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class LessThanOrEqFunction  extends BaseInfixFunction  {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MinusFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MinusFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MinusFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class MinusFunction  extends BaseInfixFunction {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ModifyFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ModifyFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ModifyFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class MoreThanFunction  extends BaseInfixFunction  {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanOrEqFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanOrEqFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MoreThanOrEqFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class MoreThanOrEqFunction  extends BaseInfixFunction  {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MultiplyFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MultiplyFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/MultiplyFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class MultiplyFunction  extends BaseInfixFunction  {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/NewFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/NewFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/NewFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PlusFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PlusFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PlusFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 public class PlusFunction  extends BaseInfixFunction {

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrintoutFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrintoutFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrintoutFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrognFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrognFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/PrognFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RetractFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RetractFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RetractFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ReturnFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ReturnFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/ReturnFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RunFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RunFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/RunFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SetFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SetFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SetFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SwitchFunction.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SwitchFunction.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/functions/SwitchFunction.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips.functions;
 
 import org.drools.clips.Appendable;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsConsequenceBuilder.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsConsequenceBuilder.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsConsequenceBuilder.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.rule.builder.dialect.clips;
 
 import java.util.Iterator;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialect.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialect.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialect.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.rule.builder.dialect.clips;
 
 import java.util.HashMap;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialectConfiguration.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialectConfiguration.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsDialectConfiguration.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.rule.builder.dialect.clips;
 
 import org.drools.compiler.Dialect;

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsEvalBuilder.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsEvalBuilder.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsEvalBuilder.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,12 +1,12 @@
-/*
- * Copyright 2006 JBoss Inc
- * 
+/**
+ * Copyright 2010 JBoss Inc
+ *
  * Licensed 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.

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsPredicateBuilder.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsPredicateBuilder.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsPredicateBuilder.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,12 +1,12 @@
-/*
- * Copyright 2006 JBoss Inc
- * 
+/**
+ * Copyright 2010 JBoss Inc
+ *
  * Licensed 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.

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsReturnValueBuilder.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsReturnValueBuilder.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/rule/builder/dialect/clips/ClipsReturnValueBuilder.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.rule.builder.dialect.clips;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools;
 
 import java.io.Serializable;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools;
 
 import java.io.Serializable;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/PersonInterface.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/PersonInterface.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/PersonInterface.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools;
 
 import java.math.BigDecimal;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/ClipsShellTest.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/ClipsShellTest.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/ClipsShellTest.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import java.io.ByteArrayOutputStream;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/CompiledFunctionsTest.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/CompiledFunctionsTest.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/CompiledFunctionsTest.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import org.junit.Ignore;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/FunctionFactoryTest.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/FunctionFactoryTest.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/FunctionFactoryTest.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import junit.framework.TestCase;

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/LhsClpParserTest.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/LhsClpParserTest.java	2010-07-28 17:00:35 UTC (rev 34262)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/clips/LhsClpParserTest.java	2010-07-28 17:32:15 UTC (rev 34263)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed 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.drools.clips;
 
 import java.io.InputStream;



More information about the jboss-svn-commits mailing list