You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ja...@apache.org on 2012/10/31 06:50:46 UTC

svn commit: r1403992 - in /incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser: ./ treekernel/ uima/ae/ uima/co/ util/

Author: james-masanz
Date: Wed Oct 31 05:50:46 2012
New Revision: 1403992

URL: http://svn.apache.org/viewvc?rev=1403992&view=rev
Log:
CTAKES-61  Apply Standard ASF license header to all source files. 
For the branch used for 2.6-incubating, checking in the header changes now

Modified:
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/MaxentParserWrapper.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/ParserWrapper.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeExtractor.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeKernel.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ConstituencyParser.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ParserEvaluationAnnotator.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/co/ParserTreeWriterConsumer.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/AnnotationTreeUtils.java
    incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/TreeUtils.java

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/MaxentParserWrapper.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/MaxentParserWrapper.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/MaxentParserWrapper.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/MaxentParserWrapper.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,4 @@
+/* 
  * 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
@@ -5,16 +6,16 @@
  * 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.
-    
-* @author Tim Miller
-*/
+ *     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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser;
 
 import java.io.File;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/ParserWrapper.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/ParserWrapper.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/ParserWrapper.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/ParserWrapper.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,4 @@
+/* 
  * 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
@@ -5,16 +6,16 @@
  * 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.
-    
-* @author Tim Miller
-*/
+ *     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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser;
 
 import java.util.ArrayList;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeExtractor.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeExtractor.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeExtractor.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeExtractor.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,21 @@
+/* 
+ * 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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.treekernel;
 
 import java.util.ArrayList;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeKernel.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeKernel.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeKernel.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/treekernel/TreeKernel.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,21 @@
+/* 
+ * 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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.treekernel;
 
 import opennlp.tools.parser.Parse;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ConstituencyParser.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ConstituencyParser.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ConstituencyParser.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ConstituencyParser.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,4 @@
+/* 
  * 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
@@ -5,16 +6,16 @@
  * 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.
-    
-* @author Tim Miller
-*/
+ *     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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.uima.ae;
 
 import java.io.FileNotFoundException;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ParserEvaluationAnnotator.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ParserEvaluationAnnotator.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ParserEvaluationAnnotator.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/ae/ParserEvaluationAnnotator.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,4 @@
+/* 
  * 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
@@ -5,16 +6,16 @@
  * 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.
-    
-* @author Tim Miller
-*/
+ *     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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.uima.ae;
 
 import java.io.File;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/co/ParserTreeWriterConsumer.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/uima/co/ParserTreeWriterConsumer.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/co/ParserTreeWriterConsumer.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/uima/co/ParserTreeWriterConsumer.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,4 @@
+/* 
  * 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
@@ -5,16 +6,16 @@
  * 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.
-    
-* @author Tim Miller
-*/
+ *     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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.uima.co;
 
 import java.io.FileNotFoundException;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/AnnotationTreeUtils.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/util/AnnotationTreeUtils.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/AnnotationTreeUtils.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/AnnotationTreeUtils.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,21 @@
+/* 
+ * 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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.util;
 
 import java.util.Iterator;

Modified: incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/TreeUtils.java
URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/Constituency%20Parser/src/org/chboston/cnlp/ctakes/parser/util/TreeUtils.java?rev=1403992&r1=1403991&r2=1403992&view=diff
==============================================================================
--- incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/TreeUtils.java (original)
+++ incubator/ctakes/branches/SHARPn-cTAKES/Constituency Parser/src/org/chboston/cnlp/ctakes/parser/util/TreeUtils.java Wed Oct 31 05:50:46 2012
@@ -1,3 +1,4 @@
+/* 
  * 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
@@ -5,16 +6,16 @@
  * 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.
-    
-* @author Tim Miller
-*/
+ *     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.
+ *     
+ * @author Tim Miller
+ */
 package org.chboston.cnlp.ctakes.parser.util;
 
 import opennlp.tools.parser.Parse;