[jboss-svn-commits] JBL Code SVN: r34163 - in labs/jbossrules/trunk/drools-assistant/src: main/java/org/drools/assistant/engine and 8 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jul 26 02:37:51 EDT 2010


Author: Rikkola
Date: 2010-07-26 02:37:51 -0400 (Mon, 26 Jul 2010)
New Revision: 34163

Modified:
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleRefactorAssistant.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleSuggestionAssistant.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/AbstractParserEngine.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DRLParserEngine.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DSLParserEngine.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/RuleRefactorInfo.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLContentTypeEnum.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLRuleRefactorInfo.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleBasicContentInfo.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleDRLContentInfo.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleLineContentInfo.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/dsl/DSLRuleRefactorInfo.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/AssistantOption.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/RenameAssistantOption.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/ReplaceAssistantOption.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleAssistantProcessor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleRefactorProcessor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DRLRefactorProcessor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DSLRefactorProcessor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/AbstractRuleRefactor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DRLRuleRefactor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DSLRuleRefactor.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/FixImport.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/Variable.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableBinding.java
   labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableRename.java
   labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLAssistantTest.java
   labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLParserEngineTest.java
   labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DSLParserEngineTest.java
   labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/FixImportTest.java
   labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/VariableBindingTest.java
Log:
[#JBRULES-2577] License headers are missing for most of the files

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleRefactorAssistant.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleRefactorAssistant.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleRefactorAssistant.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 public interface RuleRefactorAssistant {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleSuggestionAssistant.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleSuggestionAssistant.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/RuleSuggestionAssistant.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 public interface RuleSuggestionAssistant {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/AbstractParserEngine.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/AbstractParserEngine.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/AbstractParserEngine.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.engine;
 
 import java.util.regex.Matcher;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DRLParserEngine.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DRLParserEngine.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DRLParserEngine.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.engine;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DSLParserEngine.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DSLParserEngine.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/engine/DSLParserEngine.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.engine;
 
 import java.util.regex.Pattern;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/RuleRefactorInfo.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/RuleRefactorInfo.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/RuleRefactorInfo.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info;
 
 

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLContentTypeEnum.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLContentTypeEnum.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLContentTypeEnum.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info.drl;
 
 public enum DRLContentTypeEnum {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLRuleRefactorInfo.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLRuleRefactorInfo.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/DRLRuleRefactorInfo.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info.drl;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleBasicContentInfo.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleBasicContentInfo.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleBasicContentInfo.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info.drl;
 
 public class RuleBasicContentInfo {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleDRLContentInfo.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleDRLContentInfo.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleDRLContentInfo.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info.drl;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleLineContentInfo.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleLineContentInfo.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/drl/RuleLineContentInfo.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info.drl;
 
 public class RuleLineContentInfo extends RuleBasicContentInfo {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/dsl/DSLRuleRefactorInfo.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/dsl/DSLRuleRefactorInfo.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/info/dsl/DSLRuleRefactorInfo.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.info.dsl;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/AssistantOption.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/AssistantOption.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/AssistantOption.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.option;
 
 public abstract class AssistantOption {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/RenameAssistantOption.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/RenameAssistantOption.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/RenameAssistantOption.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.option;
 
 import org.drools.assistant.info.drl.RuleBasicContentInfo;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/ReplaceAssistantOption.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/ReplaceAssistantOption.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/option/ReplaceAssistantOption.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.option;
 
 public class ReplaceAssistantOption extends AssistantOption {

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleAssistantProcessor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleAssistantProcessor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleAssistantProcessor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.processor;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleRefactorProcessor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleRefactorProcessor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/AbstractRuleRefactorProcessor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.processor;
 
 import org.drools.assistant.engine.AbstractParserEngine;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DRLRefactorProcessor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DRLRefactorProcessor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DRLRefactorProcessor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.processor;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DSLRefactorProcessor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DSLRefactorProcessor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/processor/DSLRefactorProcessor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.processor;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/AbstractRuleRefactor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/AbstractRuleRefactor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/AbstractRuleRefactor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DRLRuleRefactor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DRLRuleRefactor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DRLRuleRefactor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DSLRuleRefactor.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DSLRuleRefactor.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/DSLRuleRefactor.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/FixImport.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/FixImport.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/FixImport.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor.drl;
 
 import java.lang.reflect.Field;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/Variable.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/Variable.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/Variable.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor.drl;
 
 import java.util.ArrayList;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableBinding.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableBinding.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableBinding.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor.drl;
 
 import org.drools.assistant.info.drl.RuleBasicContentInfo;

Modified: labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableRename.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableRename.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/main/java/org/drools/assistant/refactor/drl/VariableRename.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant.refactor.drl;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLAssistantTest.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLAssistantTest.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLAssistantTest.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLParserEngineTest.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLParserEngineTest.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DRLParserEngineTest.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 import junit.framework.Assert;

Modified: labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DSLParserEngineTest.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DSLParserEngineTest.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/DSLParserEngineTest.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 import org.drools.assistant.engine.DSLParserEngine;

Modified: labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/FixImportTest.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/FixImportTest.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/FixImportTest.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 import java.util.List;

Modified: labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/VariableBindingTest.java
===================================================================
--- labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/VariableBindingTest.java	2010-07-26 06:35:46 UTC (rev 34162)
+++ labs/jbossrules/trunk/drools-assistant/src/test/java/org/drools/assistant/VariableBindingTest.java	2010-07-26 06:37:51 UTC (rev 34163)
@@ -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.assistant;
 
 import junit.framework.Assert;



More information about the jboss-svn-commits mailing list