You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by jo...@apache.org on 2011/08/03 17:58:17 UTC

svn commit: r1153554 - in /uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien: ./ src/main/java/org/apache/uima/tm/textruler/wien/

Author: joern
Date: Wed Aug  3 15:58:15 2011
New Revision: 1153554

URL: http://svn.apache.org/viewvc?rev=1153554&view=rev
Log:
UIMA-2189 Applied patch that adds AL 2.0 headers

Modified:
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/build.properties
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/plugin.xml
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/Wien.java
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienFactory.java
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienPlugin.java
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRule.java
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRuleItem.java
    uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienWordConstraint.java

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/build.properties
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/build.properties?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/build.properties (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/build.properties Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+# ***************************************************************
+#  * Licensed to the Apache Software Foundation (ASF) under one
+#  * or more contributor license agreements.  See the NOTICE file
+#  * distributed with this work for additional information
+#  * regarding copyright ownership.  The ASF licenses this file
+#  * to you under the Apache License, Version 2.0 (the
+#  * "License"); you may not use this file except in compliance
+#  * with the License.  You may obtain a copy of the License at
+#  * 
+#  * http://www.apache.org/licenses/LICENSE-2.0
+#  * 
+#  * Unless required by applicable law or agreed to in writing,
+#  * software distributed under the License is distributed on an
+#  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  * KIND, either express or implied.  See the License for the
+#  * specific language governing permissions and limitations
+#  * under the License.
+# ***************************************************************
+
 source.. = src/
 output.. = bin/
 bin.includes = META-INF/,\

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/plugin.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/plugin.xml?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/plugin.xml (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/plugin.xml Wed Aug  3 15:58:15 2011
@@ -1,4 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <?eclipse version="3.4"?>
 <plugin>
    <extension

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/Wien.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/Wien.java?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/Wien.java (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/Wien.java Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 package org.apache.uima.tm.textruler.wien;
 
 import java.util.ArrayList;

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienFactory.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienFactory.java?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienFactory.java (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienFactory.java Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 package org.apache.uima.tm.textruler.wien;
 
 import java.util.HashMap;

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienPlugin.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienPlugin.java?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienPlugin.java (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienPlugin.java Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 package org.apache.uima.tm.textruler.wien;
 
 import org.eclipse.core.runtime.Plugin;

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRule.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRule.java?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRule.java (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRule.java Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 package org.apache.uima.tm.textruler.wien;
 
 import org.apache.uima.tm.textruler.core.TextRulerBasicLearner;

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRuleItem.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRuleItem.java?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRuleItem.java (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienRuleItem.java Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 package org.apache.uima.tm.textruler.wien;
 
 import java.util.ArrayList;

Modified: uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienWordConstraint.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienWordConstraint.java?rev=1153554&r1=1153553&r2=1153554&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienWordConstraint.java (original)
+++ uima/sandbox/trunk/TextMarker/org.apache.uima.tm.textruler.wien/src/main/java/org/apache/uima/tm/textruler/wien/WienWordConstraint.java Wed Aug  3 15:58:15 2011
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 package org.apache.uima.tm.textruler.wien;
 
 import org.apache.uima.tm.textruler.core.TextRulerAnnotation;