[jboss-svn-commits] JBL Code SVN: r34180 - in labs/jbossrules/trunk/drools-api: src/main/java/org/drools/event/knowledgebase and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jul 26 08:00:01 EDT 2010


Author: Rikkola
Date: 2010-07-26 08:00:00 -0400 (Mon, 26 Jul 2010)
New Revision: 34180

Modified:
   labs/jbossrules/trunk/drools-api/META-INF/MANIFEST.MF
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterFunctionRemovedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseLockedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseUnlockedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageAddedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageRemovedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleAddedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleRemovedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeFunctionRemovedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseLockedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseUnlockedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageAddedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageRemovedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleAddedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleRemovedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/KnowledgeBaseEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessCompletedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEventListener.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeLeftEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeTriggeredEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessStartedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCancelledEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCreatedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AfterActivationFiredEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaEventListener.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPoppedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPushedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/BeforeActivationFiredEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectInsertedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectRetractedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectUpdatedEvent.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/WorkingMemoryEventListener.java
   labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/rule/Evaluator.java
Log:
[#JBRULES-2577] License headers are missing for most of the files

Modified: labs/jbossrules/trunk/drools-api/META-INF/MANIFEST.MF
===================================================================
--- labs/jbossrules/trunk/drools-api/META-INF/MANIFEST.MF	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/META-INF/MANIFEST.MF	2010-07-26 12:00:00 UTC (rev 34180)
@@ -54,7 +54,7 @@
 Bundle-Vendor: JBoss Inc.
 DynamicImport-Package: *
 Bundle-Version: 5.1.0.SNAPSHOT
-Bnd-LastModified: 1280045063255
+Bnd-LastModified: 1280144538793
 Bundle-Activator: org.drools.osgi.api.Activator
 Bundle-ManifestVersion: 2
 Bundle-Description: A rule production system

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterFunctionRemovedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterFunctionRemovedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterFunctionRemovedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.knowledgebase;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AfterFunctionRemovedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseLockedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseLockedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseLockedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,22 +16,8 @@
 
 package org.drools.event.knowledgebase;
 
-/*
- * Copyright 2005 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.
- */
 
+
 import org.drools.definition.rule.Rule;
 
 public interface AfterKnowledgeBaseLockedEvent

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseUnlockedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseUnlockedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgeBaseUnlockedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,22 +16,6 @@
 
 package org.drools.event.knowledgebase;
 
-/*
- * Copyright 2005 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.
- */
-
 public interface AfterKnowledgeBaseUnlockedEvent
     extends
     KnowledgeBaseEvent {

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageAddedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageAddedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageAddedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.KnowledgePackage;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AfterKnowledgePackageAddedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageRemovedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageRemovedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterKnowledgePackageRemovedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.knowledgebase;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.definition.KnowledgePackage;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleAddedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleAddedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleAddedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.rule.Rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AfterRuleAddedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleRemovedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleRemovedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/AfterRuleRemovedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.rule.Rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AfterRuleRemovedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeFunctionRemovedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeFunctionRemovedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeFunctionRemovedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.knowledgebase;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeFunctionRemovedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseLockedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseLockedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseLockedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.knowledgebase;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeKnowledgeBaseLockedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseUnlockedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseUnlockedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgeBaseUnlockedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.KnowledgeBase;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeKnowledgeBaseUnlockedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageAddedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageAddedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageAddedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.KnowledgePackage;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeKnowledgePackageAddedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageRemovedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageRemovedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeKnowledgePackageRemovedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.KnowledgePackage;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeKnowledgePackageRemovedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleAddedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleAddedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleAddedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.rule.Rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeRuleAddedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleRemovedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleRemovedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/BeforeRuleRemovedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.definition.rule.Rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeRuleRemovedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/KnowledgeBaseEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/KnowledgeBaseEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/knowledgebase/KnowledgeBaseEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,21 +18,6 @@
 
 import org.drools.KnowledgeBase;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface KnowledgeBaseEvent {
     public KnowledgeBase getKnowledgeBase();

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessCompletedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessCompletedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessCompletedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.process;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface ProcessCompletedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.process;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.event.KnowledgeRuntimeEvent;
 import org.drools.runtime.process.ProcessInstance;

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEventListener.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEventListener.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessEventListener.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.process;
 
-/*
- * Copyright 2005 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.
- */
 
 import java.util.EventListener;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeLeftEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeLeftEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeLeftEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.process;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface ProcessNodeLeftEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeTriggeredEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeTriggeredEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessNodeTriggeredEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.process;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface ProcessNodeTriggeredEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessStartedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessStartedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/process/ProcessStartedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.process;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface ProcessStartedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCancelledEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCancelledEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCancelledEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface ActivationCancelledEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCreatedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCreatedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationCreatedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface ActivationCreatedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ActivationEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.event.KnowledgeRuntimeEvent;
 import org.drools.runtime.rule.Activation;

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AfterActivationFiredEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AfterActivationFiredEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AfterActivationFiredEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AfterActivationFiredEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaEventListener.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaEventListener.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaEventListener.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import java.util.EventListener;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.event.KnowledgeRuntimeEvent;
 import org.drools.runtime.rule.AgendaGroup;

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPoppedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPoppedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPoppedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AgendaGroupPoppedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPushedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPushedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/AgendaGroupPushedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface AgendaGroupPushedEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/BeforeActivationFiredEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/BeforeActivationFiredEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/BeforeActivationFiredEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 public interface BeforeActivationFiredEvent
     extends

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectInsertedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectInsertedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectInsertedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.runtime.rule.FactHandle;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectRetractedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectRetractedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectRetractedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.runtime.rule.FactHandle;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectUpdatedEvent.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectUpdatedEvent.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/ObjectUpdatedEvent.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import org.drools.runtime.rule.FactHandle;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/WorkingMemoryEventListener.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/WorkingMemoryEventListener.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/event/rule/WorkingMemoryEventListener.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.event.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import java.util.EventListener;
 

Modified: labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/rule/Evaluator.java
===================================================================
--- labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/rule/Evaluator.java	2010-07-26 11:56:01 UTC (rev 34179)
+++ labs/jbossrules/trunk/drools-api/src/main/java/org/drools/runtime/rule/Evaluator.java	2010-07-26 12:00:00 UTC (rev 34180)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,21 +16,6 @@
 
 package org.drools.runtime.rule;
 
-/*
- * Copyright 2005 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.
- */
 
 import java.io.Serializable;
 



More information about the jboss-svn-commits mailing list