[jboss-svn-commits] JBL Code SVN: r34265 - in labs/jbossrules/trunk/drools-simulator/src: main/java/org/drools/simulation/impl and 2 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Jul 28 13:40:50 EDT 2010


Author: Rikkola
Date: 2010-07-28 13:40:49 -0400 (Wed, 28 Jul 2010)
New Revision: 34265

Modified:
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Path.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Simulation.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Step.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/JUnitSimulationRunner.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/PathImpl.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/SimulationImpl.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/Simulator.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/StepImpl.java
   labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/TestGroupCommand.java
   labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java
   labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java
   labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java
   labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/PersonInterface.java
   labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/simulation/impl/SimulationTest.java
Log:
[#JBRULES-2577] License headers are missing for most of the files

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Path.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Path.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Path.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation;
 
 import java.util.Collection;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Simulation.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Simulation.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Simulation.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation;
 
 import java.util.Map;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Step.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Step.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/Step.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation;
 
 import java.util.Collection;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/JUnitSimulationRunner.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/JUnitSimulationRunner.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/JUnitSimulationRunner.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.lang.reflect.InvocationTargetException;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/PathImpl.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/PathImpl.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/PathImpl.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.util.Collection;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/SimulationImpl.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/SimulationImpl.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/SimulationImpl.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.util.HashMap;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/Simulator.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/Simulator.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/Simulator.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.util.Comparator;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/StepImpl.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/StepImpl.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/StepImpl.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/TestGroupCommand.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/TestGroupCommand.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/main/java/org/drools/simulation/impl/TestGroupCommand.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.util.HashMap;

Modified: labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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-simulator/src/test/java/org/drools/Cheese.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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-simulator/src/test/java/org/drools/Person.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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-simulator/src/test/java/org/drools/PersonInterface.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/PersonInterface.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/PersonInterface.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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-simulator/src/test/java/org/drools/simulation/impl/SimulationTest.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/simulation/impl/SimulationTest.java	2010-07-28 17:36:07 UTC (rev 34264)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/simulation/impl/SimulationTest.java	2010-07-28 17:40:49 UTC (rev 34265)
@@ -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.simulation.impl;
 
 import java.util.ArrayList;



More information about the jboss-svn-commits mailing list