You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2016/12/22 15:45:50 UTC

svn commit: r1775680 - in /uima/ruta/trunk/ruta-ep-core-ext: plugin.xml src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java

Author: pkluegl
Date: Thu Dec 22 15:45:50 2016
New Revision: 1775680

URL: http://svn.apache.org/viewvc?rev=1775680&view=rev
Log:
UIMA-5187
- add ide extension

Added:
    uima/ruta/trunk/ruta-ep-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java   (with props)
Modified:
    uima/ruta/trunk/ruta-ep-core-ext/plugin.xml

Modified: uima/ruta/trunk/ruta-ep-core-ext/plugin.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-core-ext/plugin.xml?rev=1775680&r1=1775679&r2=1775680&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-ep-core-ext/plugin.xml (original)
+++ uima/ruta/trunk/ruta-ep-core-ext/plugin.xml Thu Dec 22 15:45:50 2016
@@ -22,6 +22,13 @@ under the License.
    <extension
          point="org.apache.uima.ruta.ide.blockExtension">
       <block
+            class="org.apache.uima.ruta.block.DocumentBlockIDEExtension"
+            engine="org.apache.uima.ruta.block.DocumentBlockExtension">
+      </block>
+   </extension>
+   <extension
+         point="org.apache.uima.ruta.ide.blockExtension">
+      <block
             class="org.apache.uima.ruta.block.OnlyFirstBlockIDEExtension"
             engine="org.apache.uima.ruta.block.OnlyFirstBlockExtension">
       </block>

Added: uima/ruta/trunk/ruta-ep-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java?rev=1775680&view=auto
==============================================================================
--- uima/ruta/trunk/ruta-ep-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java (added)
+++ uima/ruta/trunk/ruta-ep-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java Thu Dec 22 15:45:50 2016
@@ -0,0 +1,41 @@
+/*
+ * 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.ruta.block;
+
+import org.antlr.runtime.RecognitionException;
+import org.apache.uima.ruta.ide.core.extensions.IIDEConditionExtension;
+import org.apache.uima.ruta.ide.core.extensions.IRutaCheckerProblemFactory;
+import org.eclipse.dltk.ast.expressions.Expression;
+import org.eclipse.dltk.compiler.problem.IProblemReporter;
+
+public class DocumentBlockIDEExtension implements IIDEConditionExtension {
+  private final String[] strings = new String[] { "DOCUMENTBLOCK" };
+
+  public String[] getKnownExtensions() {
+    return strings;
+  }
+
+  public boolean checkSyntax(Expression element, IRutaCheckerProblemFactory problemFactory,
+          IProblemReporter rep) throws RecognitionException {
+    // do not add additional checks yet
+    return true;
+  }
+
+}

Propchange: uima/ruta/trunk/ruta-ep-core-ext/src/main/java/org/apache/uima/ruta/block/DocumentBlockIDEExtension.java
------------------------------------------------------------------------------
    svn:eol-style = native