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 2012/07/12 10:58:07 UTC

svn commit: r1360586 [2/3] - in /uima/sandbox/trunk/TextMarker: uimaj-ep-textmarker-addons/ uimaj-ep-textmarker-addons/src/main/java/org/apache/uima/textmarker/addons/ uimaj-ep-textmarker-addons/src/main/java/org/apache/uima/textmarker/explain/ uimaj-e...

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/GatherAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/GatherAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/GatherAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/GatherAction.java Thu Jul 12 08:58:05 2012
@@ -81,7 +81,7 @@ public class GatherAction extends Abstra
         Annotation a = (Annotation) newFS;
         a.setBegin(matchedAnnotation.getBegin());
         a.setEnd(matchedAnnotation.getEnd());
-        stream.addAnnotation(a);
+        stream.addAnnotation(a, match);
       }
       TOP newStructure = null;
       if (newFS instanceof TOP) {

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkAction.java Thu Jul 12 08:58:05 2012
@@ -55,7 +55,7 @@ public class MarkAction extends Abstract
         return;
       }
       if (score == null) {
-        createAnnotation(matchedAnnotation, element, stream);
+        createAnnotation(matchedAnnotation, element, stream, match);
       } else {
         double deltaScore = score.getDoubleValue(element.getParent());
         updateHeuristicAnnotation(match, element, stream, matchedAnnotation, deltaScore);
@@ -81,7 +81,7 @@ public class MarkAction extends Abstract
     if (annotationsInWindow.isEmpty()) {
       heuristicAnnotation.addToIndexes();
       newAnnotation.addToIndexes();
-      stream.addAnnotation(newAnnotation);
+      stream.addAnnotation(newAnnotation, match);
     } else {
       TextMarkerAnnotation tma = stream.getCorrectTMA(annotationsInWindow, heuristicAnnotation);
       if (tma != null) {
@@ -92,7 +92,7 @@ public class MarkAction extends Abstract
       } else {
         heuristicAnnotation.addToIndexes();
         newAnnotation.addToIndexes();
-        stream.addAnnotation(newAnnotation);
+        stream.addAnnotation(newAnnotation, match);
       }
     }
 

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkFastAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkFastAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkFastAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkFastAction.java Thu Jul 12 08:58:05 2012
@@ -67,7 +67,7 @@ public class MarkFastAction extends Abst
                 ignoreLength.getIntegerValue(element.getParent()), null, 0);
         for (AnnotationFS annotation : found) {
           TextMarkerBasic anchor = windowStream.getFirstBasicInWindow(annotation);
-          createAnnotation(anchor, element, windowStream, annotation);
+          createAnnotation(anchor, element, windowStream, annotation, match);
         }
       }
     }

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkLastAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkLastAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkLastAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkLastAction.java Thu Jul 12 08:58:05 2012
@@ -44,7 +44,7 @@ public class MarkLastAction extends Abst
       List<TextMarkerBasic> list = stream.getBasicsInWindow(matchedAnnotation);
       if (!list.isEmpty()) {
         TextMarkerBasic last = list.get(list.size() - 1);
-        createAnnotation(last, element, stream, last);
+        createAnnotation(last, element, stream, last, match);
       }
 
     }

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkTableAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkTableAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkTableAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/MarkTableAction.java Thu Jul 12 08:58:05 2012
@@ -101,7 +101,7 @@ public class MarkTableAction extends Abs
         Annotation a = (Annotation) newFS;
         a.setBegin(annotationFS.getBegin());
         a.setEnd(annotationFS.getEnd());
-        stream.addAnnotation(a);
+        stream.addAnnotation(a, match);
       }
       TOP newStructure = null;
       if (newFS instanceof TOP) {

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TransferAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TransferAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TransferAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TransferAction.java Thu Jul 12 08:58:05 2012
@@ -52,7 +52,7 @@ public class TransferAction extends Type
           FeatureStructure createFS = cas.createFS(t);
           copyFeatures(annotationFS, createFS, cas);
           if (createFS instanceof AnnotationFS) {
-            stream.addAnnotation((AnnotationFS) createFS);
+            stream.addAnnotation((AnnotationFS) createFS, match);
           }
           cas.addFsToIndexes(createFS);
         }

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TrieAction.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TrieAction.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TrieAction.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/action/TrieAction.java Thu Jul 12 08:58:05 2012
@@ -90,7 +90,7 @@ public class TrieAction extends Abstract
 
     if (found != null) {
       for (AnnotationFS annotation : found) {
-        stream.addAnnotation(annotation);
+        stream.addAnnotation(annotation, match);
         stream.getCas().addFsToIndexes(annotation);
       }
     }

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/BasicEngine.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/BasicEngine.xml?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/BasicEngine.xml (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/BasicEngine.xml Thu Jul 12 08:58:05 2012
@@ -1,23 +1,4 @@
 <?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.
--->
-
 <analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
   <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
   <primitive>true</primitive>
@@ -143,6 +124,12 @@
         <multiValued>false</multiValued>
         <mandatory>false</mandatory>
       </configurationParameter>
+      <configurationParameter>
+        <name>createdBy</name>
+        <type>Boolean</type>
+        <multiValued>false</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
     </configurationParameters>
     <configurationParameterSettings>
       <nameValuePair>
@@ -188,6 +175,12 @@
           </array>
         </value>
       </nameValuePair>
+      <nameValuePair>
+        <name>createdBy</name>
+        <value>
+          <boolean>false</boolean>
+        </value>
+      </nameValuePair>
     </configurationParameterSettings>
     <typeSystemDescription>
       <imports>

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml Thu Jul 12 08:58:05 2012
@@ -1,23 +1,4 @@
 <?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.
--->
-
 <typeSystemDescription xmlns="http://uima.apache.org/resourceSpecifier">
   <name>InternalTypeSystem</name>
   <description/>
@@ -74,6 +55,16 @@
           <rangeTypeName>uima.cas.FSArray</rangeTypeName>
           <elementType>org.apache.uima.textmarker.type.DebugRuleMatch</elementType>
         </featureDescription>
+        <featureDescription>
+          <name>id</name>
+          <description/>
+          <rangeTypeName>uima.cas.Integer</rangeTypeName>
+        </featureDescription>
+        <featureDescription>
+          <name>script</name>
+          <description/>
+          <rangeTypeName>uima.cas.String</rangeTypeName>
+        </featureDescription>
       </features>
     </typeDescription>
     <typeDescription>
@@ -304,5 +295,32 @@
       <description/>
       <supertypeName>org.apache.uima.textmarker.type.EvalAnnotation</supertypeName>
     </typeDescription>
+    <typeDescription>
+      <name>org.apache.uima.textmarker.type.DebugCreatedBy</name>
+      <description/>
+      <supertypeName>uima.cas.TOP</supertypeName>
+      <features>
+        <featureDescription>
+          <name>rule</name>
+          <description/>
+          <rangeTypeName>uima.cas.String</rangeTypeName>
+        </featureDescription>
+        <featureDescription>
+          <name>annotation</name>
+          <description/>
+          <rangeTypeName>uima.tcas.Annotation</rangeTypeName>
+        </featureDescription>
+        <featureDescription>
+          <name>script</name>
+          <description/>
+          <rangeTypeName>uima.cas.String</rangeTypeName>
+        </featureDescription>
+        <featureDescription>
+          <name>id</name>
+          <description/>
+          <rangeTypeName>uima.cas.Integer</rangeTypeName>
+        </featureDescription>
+      </features>
+    </typeDescription>
   </types>
 </typeSystemDescription>

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/TextMarkerEngine.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/TextMarkerEngine.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/TextMarkerEngine.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/TextMarkerEngine.java Thu Jul 12 08:58:05 2012
@@ -66,6 +66,7 @@ import org.apache.uima.textmarker.parser
 import org.apache.uima.textmarker.parser.TextMarkerParser;
 import org.apache.uima.textmarker.seed.TextMarkerAnnotationSeeder;
 import org.apache.uima.textmarker.verbalize.TextMarkerVerbalizer;
+import org.apache.uima.textmarker.visitor.CreatedByVisitor;
 import org.apache.uima.textmarker.visitor.DebugInfoCollectorVisitor;
 import org.apache.uima.textmarker.visitor.InferenceCrowd;
 import org.apache.uima.textmarker.visitor.StatisticsVisitor;
@@ -106,6 +107,8 @@ public class TextMarkerEngine extends JC
 
   public static final String CREATE_STATISTIC_INFO = "statistics";
 
+  public static final String CREATE_CREATED_BY_INFO = "createdBy";
+
   public static final String CREATE_MATCH_DEBUG_INFO = "debugWithMatches";
 
   public static final String RESOURCE_PATHS = "resourcePaths";
@@ -172,6 +175,8 @@ public class TextMarkerEngine extends JC
 
   private Boolean lowMemoryProfile;
 
+  private Boolean createCreatedByInfo;
+
   private boolean initialized = false;
 
   private List<Type> seedTypes;
@@ -197,6 +202,7 @@ public class TextMarkerEngine extends JC
     createDebugOnlyFor = (String[]) aContext.getConfigParameterValue(CREATE_DEBUG_INFO_ONLY_FOR);
     createProfilingInfo = (Boolean) aContext.getConfigParameterValue(CREATE_PROFILING_INFO);
     createStatisticInfo = (Boolean) aContext.getConfigParameterValue(CREATE_STATISTIC_INFO);
+    createCreatedByInfo = (Boolean) aContext.getConfigParameterValue(CREATE_CREATED_BY_INFO);
     withMatches = (Boolean) aContext.getConfigParameterValue(CREATE_MATCH_DEBUG_INFO);
 
     resourcePaths = (String[]) aContext.getConfigParameterValue(RESOURCE_PATHS);
@@ -211,6 +217,7 @@ public class TextMarkerEngine extends JC
     createDebugOnlyFor = createDebugOnlyFor == null ? new String[0] : createDebugOnlyFor;
     createProfilingInfo = createProfilingInfo == null ? false : createProfilingInfo;
     createStatisticInfo = createStatisticInfo == null ? false : createStatisticInfo;
+    createCreatedByInfo = createCreatedByInfo == null ? false : createCreatedByInfo;
     withMatches = withMatches == null ? true : withMatches;
 
     scriptEncoding = scriptEncoding == null ? "UTF-8" : scriptEncoding;
@@ -254,9 +261,9 @@ public class TextMarkerEngine extends JC
       initializeTypes(script, cas);
       initialized = true;
     }
-    TextMarkerStream stream = initializeStream(cas);
-    stream.setDynamicAnchoring(dynamicAnchoring);
     InferenceCrowd crowd = initializeCrowd();
+    TextMarkerStream stream = initializeStream(cas, crowd);
+    stream.setDynamicAnchoring(dynamicAnchoring);
     try {
       script.apply(stream, crowd);
     } catch (Throwable e) {
@@ -372,10 +379,13 @@ public class TextMarkerEngine extends JC
     if (createStatisticInfo) {
       visitors.add(new StatisticsVisitor(verbalizer));
     }
+    if (createCreatedByInfo) {
+      visitors.add(new CreatedByVisitor(verbalizer));
+    }
     return new InferenceCrowd(visitors);
   }
 
-  private TextMarkerStream initializeStream(CAS cas) throws AnalysisEngineProcessException {
+  private TextMarkerStream initializeStream(CAS cas, InferenceCrowd crowd) throws AnalysisEngineProcessException {
     Collection<Type> filterTypes = new ArrayList<Type>();
     TypeSystem typeSystem = cas.getTypeSystem();
     for (String each : defaultFilteredTypes) {
@@ -387,7 +397,7 @@ public class TextMarkerEngine extends JC
     FilterManager filter = new FilterManager(filterTypes, cas);
     Type basicType = typeSystem.getType(BASIC_TYPE);
     seedTypes = seedAnnotations(cas);
-    TextMarkerStream stream = new TextMarkerStream(cas, basicType, filter, lowMemoryProfile);
+    TextMarkerStream stream = new TextMarkerStream(cas, basicType, filter, lowMemoryProfile, crowd);
 
     stream.initalizeBasics();
     return stream;
@@ -421,7 +431,7 @@ public class TextMarkerEngine extends JC
   }
 
   private void initializeScript() throws AnalysisEngineProcessException {
-    if(mainScript == null) {
+    if (mainScript == null) {
       return;
     }
     String scriptLocation = locate(mainScript, scriptPaths, ".tm");
@@ -513,7 +523,6 @@ public class TextMarkerEngine extends JC
     script.setEngineDependencies(additionalEngines);
   }
 
-
   private void configureEngine(AnalysisEngine engine) throws ResourceConfigurationException {
     ConfigurationParameterDeclarations configurationParameterDeclarations = engine
             .getAnalysisEngineMetaData().getConfigurationParameterDeclarations();
@@ -667,8 +676,8 @@ public class TextMarkerEngine extends JC
     return script;
   }
 
-  private TextMarkerModule loadScriptIS(String scriptLocation,
-          TypeSystemDescription localTSD) throws IOException, RecognitionException {
+  private TextMarkerModule loadScriptIS(String scriptLocation, TypeSystemDescription localTSD)
+          throws IOException, RecognitionException {
     InputStream scriptInputStream = getClass().getClassLoader().getResourceAsStream(scriptLocation);
     CharStream st = new ANTLRInputStream(scriptInputStream, scriptEncoding);
     TextMarkerLexer lexer = new TextMarkerLexer(st);
@@ -691,6 +700,7 @@ public class TextMarkerEngine extends JC
   public TextMarkerEngineLoader getEngineLoader() {
     return engineLoader;
   }
+
   private String collectionToString(Collection collection) {
     StringBuilder collectionSB = new StringBuilder();
     collectionSB.append("{");

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugBlockApply extends DebugRuleApply {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugBlockApply extends Deb
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugBlockApply() {}
+  protected DebugBlockApply() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugBlockApply_Type.java Thu Jul 12 08:58:05 2012
@@ -13,7 +13,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugBlockApply_Type extends DebugRuleApply_Type {
   /** @generated */

Added: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy.java?rev=1360586&view=auto
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy.java (added)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy.java Thu Jul 12 08:58:05 2012
@@ -0,0 +1,130 @@
+
+
+/* First created by JCasGen Wed Jul 11 15:10:37 CEST 2012 */
+package org.apache.uima.textmarker.type;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.jcas.tcas.Annotation;
+import org.apache.uima.jcas.cas.TOP;
+
+
+/** 
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
+ * @generated */
+public class DebugCreatedBy extends TOP {
+  /** @generated
+   * @ordered 
+   */
+  @SuppressWarnings ("hiding")
+  public final static int typeIndexID = JCasRegistry.register(DebugCreatedBy.class);
+  /** @generated
+   * @ordered 
+   */
+  @SuppressWarnings ("hiding")
+  public final static int type = typeIndexID;
+  /** @generated  */
+  @Override
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected DebugCreatedBy() {/* intentionally empty block */}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public DebugCreatedBy(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public DebugCreatedBy(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {/*default - does nothing empty block */}
+     
+ 
+    
+  //*--------------*
+  //* Feature: rule
+
+  /** getter for rule - gets 
+   * @generated */
+  public String getRule() {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_rule == null)
+      jcasType.jcas.throwFeatMissing("rule", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_rule);}
+    
+  /** setter for rule - sets  
+   * @generated */
+  public void setRule(String v) {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_rule == null)
+      jcasType.jcas.throwFeatMissing("rule", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    jcasType.ll_cas.ll_setStringValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_rule, v);}    
+   
+    
+  //*--------------*
+  //* Feature: annotation
+
+  /** getter for annotation - gets 
+   * @generated */
+  public Annotation getAnnotation() {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_annotation == null)
+      jcasType.jcas.throwFeatMissing("annotation", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_annotation)));}
+    
+  /** setter for annotation - sets  
+   * @generated */
+  public void setAnnotation(Annotation v) {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_annotation == null)
+      jcasType.jcas.throwFeatMissing("annotation", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    jcasType.ll_cas.ll_setRefValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_annotation, jcasType.ll_cas.ll_getFSRef(v));}    
+   
+    
+  //*--------------*
+  //* Feature: script
+
+  /** getter for script - gets 
+   * @generated */
+  public String getScript() {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_script == null)
+      jcasType.jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_script);}
+    
+  /** setter for script - sets  
+   * @generated */
+  public void setScript(String v) {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_script == null)
+      jcasType.jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    jcasType.ll_cas.ll_setStringValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_script, v);}    
+   
+    
+  //*--------------*
+  //* Feature: id
+
+  /** getter for id - gets 
+   * @generated */
+  public int getId() {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_id == null)
+      jcasType.jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return jcasType.ll_cas.ll_getIntValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_id);}
+    
+  /** setter for id - sets  
+   * @generated */
+  public void setId(int v) {
+    if (DebugCreatedBy_Type.featOkTst && ((DebugCreatedBy_Type)jcasType).casFeat_id == null)
+      jcasType.jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    jcasType.ll_cas.ll_setIntValue(addr, ((DebugCreatedBy_Type)jcasType).casFeatCode_id, v);}    
+  }
+
+    
\ No newline at end of file

Added: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy_Type.java?rev=1360586&view=auto
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy_Type.java (added)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugCreatedBy_Type.java Thu Jul 12 08:58:05 2012
@@ -0,0 +1,148 @@
+
+/* First created by JCasGen Wed Jul 11 15:10:37 CEST 2012 */
+package org.apache.uima.textmarker.type;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+/** 
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * @generated */
+public class DebugCreatedBy_Type extends TOP_Type {
+  /** @generated */
+  @Override
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (DebugCreatedBy_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = DebugCreatedBy_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new DebugCreatedBy(addr, DebugCreatedBy_Type.this);
+  			   DebugCreatedBy_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new DebugCreatedBy(addr, DebugCreatedBy_Type.this);
+  	  }
+    };
+  /** @generated */
+  @SuppressWarnings ("hiding")
+  public final static int typeIndexID = DebugCreatedBy.typeIndexID;
+  /** @generated 
+     @modifiable */
+  @SuppressWarnings ("hiding")
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.textmarker.type.DebugCreatedBy");
+ 
+  /** @generated */
+  final Feature casFeat_rule;
+  /** @generated */
+  final int     casFeatCode_rule;
+  /** @generated */ 
+  public String getRule(int addr) {
+        if (featOkTst && casFeat_rule == null)
+      jcas.throwFeatMissing("rule", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_rule);
+  }
+  /** @generated */    
+  public void setRule(int addr, String v) {
+        if (featOkTst && casFeat_rule == null)
+      jcas.throwFeatMissing("rule", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    ll_cas.ll_setStringValue(addr, casFeatCode_rule, v);}
+    
+  
+ 
+  /** @generated */
+  final Feature casFeat_annotation;
+  /** @generated */
+  final int     casFeatCode_annotation;
+  /** @generated */ 
+  public int getAnnotation(int addr) {
+        if (featOkTst && casFeat_annotation == null)
+      jcas.throwFeatMissing("annotation", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return ll_cas.ll_getRefValue(addr, casFeatCode_annotation);
+  }
+  /** @generated */    
+  public void setAnnotation(int addr, int v) {
+        if (featOkTst && casFeat_annotation == null)
+      jcas.throwFeatMissing("annotation", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    ll_cas.ll_setRefValue(addr, casFeatCode_annotation, v);}
+    
+  
+ 
+  /** @generated */
+  final Feature casFeat_script;
+  /** @generated */
+  final int     casFeatCode_script;
+  /** @generated */ 
+  public String getScript(int addr) {
+        if (featOkTst && casFeat_script == null)
+      jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_script);
+  }
+  /** @generated */    
+  public void setScript(int addr, String v) {
+        if (featOkTst && casFeat_script == null)
+      jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    ll_cas.ll_setStringValue(addr, casFeatCode_script, v);}
+    
+  
+ 
+  /** @generated */
+  final Feature casFeat_id;
+  /** @generated */
+  final int     casFeatCode_id;
+  /** @generated */ 
+  public int getId(int addr) {
+        if (featOkTst && casFeat_id == null)
+      jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    return ll_cas.ll_getIntValue(addr, casFeatCode_id);
+  }
+  /** @generated */    
+  public void setId(int addr, int v) {
+        if (featOkTst && casFeat_id == null)
+      jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugCreatedBy");
+    ll_cas.ll_setIntValue(addr, casFeatCode_id, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public DebugCreatedBy_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_rule = jcas.getRequiredFeatureDE(casType, "rule", "uima.cas.String", featOkTst);
+    casFeatCode_rule  = (null == casFeat_rule) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_rule).getCode();
+
+ 
+    casFeat_annotation = jcas.getRequiredFeatureDE(casType, "annotation", "uima.tcas.Annotation", featOkTst);
+    casFeatCode_annotation  = (null == casFeat_annotation) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_annotation).getCode();
+
+ 
+    casFeat_script = jcas.getRequiredFeatureDE(casType, "script", "uima.cas.String", featOkTst);
+    casFeatCode_script  = (null == casFeat_script) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_script).getCode();
+
+ 
+    casFeat_id = jcas.getRequiredFeatureDE(casType, "id", "uima.cas.Integer", featOkTst);
+    casFeatCode_id  = (null == casFeat_id) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_id).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition.java Thu Jul 12 08:58:05 2012
@@ -11,8 +11,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugEvaluatedCondition extends TOP {
   /** @generated
@@ -28,7 +28,7 @@ public class DebugEvaluatedCondition ext
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugEvaluatedCondition() {}
+  protected DebugEvaluatedCondition() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugEvaluatedCondition_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.cas.TOP_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugEvaluatedCondition_Type extends TOP_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugFailedRuleMatch extends DebugRuleMatch {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugFailedRuleMatch extend
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugFailedRuleMatch() {}
+  protected DebugFailedRuleMatch() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugFailedRuleMatch_Type.java Thu Jul 12 08:58:05 2012
@@ -11,7 +11,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugFailedRuleMatch_Type extends DebugRuleMatch_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugMatchedRuleMatch extends DebugRuleMatch {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugMatchedRuleMatch exten
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugMatchedRuleMatch() {}
+  protected DebugMatchedRuleMatch() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugMatchedRuleMatch_Type.java Thu Jul 12 08:58:05 2012
@@ -11,7 +11,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugMatchedRuleMatch_Type extends DebugRuleMatch_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugRuleApply extends DebugScriptApply {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugRuleApply extends Debu
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugRuleApply() {}
+  protected DebugRuleApply() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */
@@ -126,6 +126,42 @@ public class DebugRuleApply extends Debu
       jcasType.jcas.throwFeatMissing("rules", "org.apache.uima.textmarker.type.DebugRuleApply");
     jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DebugRuleApply_Type)jcasType).casFeatCode_rules), i);
     jcasType.ll_cas.ll_setRefArrayValue(jcasType.ll_cas.ll_getRefValue(addr, ((DebugRuleApply_Type)jcasType).casFeatCode_rules), i, jcasType.ll_cas.ll_getFSRef(v));}
+   
+    
+  //*--------------*
+  //* Feature: id
+
+  /** getter for id - gets 
+   * @generated */
+  public int getId() {
+    if (DebugRuleApply_Type.featOkTst && ((DebugRuleApply_Type)jcasType).casFeat_id == null)
+      jcasType.jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugRuleApply");
+    return jcasType.ll_cas.ll_getIntValue(addr, ((DebugRuleApply_Type)jcasType).casFeatCode_id);}
+    
+  /** setter for id - sets  
+   * @generated */
+  public void setId(int v) {
+    if (DebugRuleApply_Type.featOkTst && ((DebugRuleApply_Type)jcasType).casFeat_id == null)
+      jcasType.jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugRuleApply");
+    jcasType.ll_cas.ll_setIntValue(addr, ((DebugRuleApply_Type)jcasType).casFeatCode_id, v);}    
+   
+    
+  //*--------------*
+  //* Feature: script
+
+  /** getter for script - gets 
+   * @generated */
+  public String getScript() {
+    if (DebugRuleApply_Type.featOkTst && ((DebugRuleApply_Type)jcasType).casFeat_script == null)
+      jcasType.jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugRuleApply");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((DebugRuleApply_Type)jcasType).casFeatCode_script);}
+    
+  /** setter for script - sets  
+   * @generated */
+  public void setScript(String v) {
+    if (DebugRuleApply_Type.featOkTst && ((DebugRuleApply_Type)jcasType).casFeat_script == null)
+      jcasType.jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugRuleApply");
+    jcasType.ll_cas.ll_setStringValue(addr, ((DebugRuleApply_Type)jcasType).casFeatCode_script, v);}    
   }
 
     
\ No newline at end of file

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleApply_Type.java Thu Jul 12 08:58:05 2012
@@ -13,7 +13,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugRuleApply_Type extends DebugScriptApply_Type {
   /** @generated */
@@ -112,6 +112,42 @@ public class DebugRuleApply_Type extends
     ll_cas.ll_setRefArrayValue(ll_cas.ll_getRefValue(addr, casFeatCode_rules), i, v);
   }
  
+ 
+  /** @generated */
+  final Feature casFeat_id;
+  /** @generated */
+  final int     casFeatCode_id;
+  /** @generated */ 
+  public int getId(int addr) {
+        if (featOkTst && casFeat_id == null)
+      jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugRuleApply");
+    return ll_cas.ll_getIntValue(addr, casFeatCode_id);
+  }
+  /** @generated */    
+  public void setId(int addr, int v) {
+        if (featOkTst && casFeat_id == null)
+      jcas.throwFeatMissing("id", "org.apache.uima.textmarker.type.DebugRuleApply");
+    ll_cas.ll_setIntValue(addr, casFeatCode_id, v);}
+    
+  
+ 
+  /** @generated */
+  final Feature casFeat_script;
+  /** @generated */
+  final int     casFeatCode_script;
+  /** @generated */ 
+  public String getScript(int addr) {
+        if (featOkTst && casFeat_script == null)
+      jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugRuleApply");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_script);
+  }
+  /** @generated */    
+  public void setScript(int addr, String v) {
+        if (featOkTst && casFeat_script == null)
+      jcas.throwFeatMissing("script", "org.apache.uima.textmarker.type.DebugRuleApply");
+    ll_cas.ll_setStringValue(addr, casFeatCode_script, v);}
+    
+  
 
 
 
@@ -133,6 +169,14 @@ public class DebugRuleApply_Type extends
     casFeat_rules = jcas.getRequiredFeatureDE(casType, "rules", "uima.cas.FSArray", featOkTst);
     casFeatCode_rules  = (null == casFeat_rules) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_rules).getCode();
 
+ 
+    casFeat_id = jcas.getRequiredFeatureDE(casType, "id", "uima.cas.Integer", featOkTst);
+    casFeatCode_id  = (null == casFeat_id) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_id).getCode();
+
+ 
+    casFeat_script = jcas.getRequiredFeatureDE(casType, "script", "uima.cas.String", featOkTst);
+    casFeatCode_script  = (null == casFeat_script) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_script).getCode();
+
   }
 }
 

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugRuleElementMatch extends ProfiledAnnotation {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugRuleElementMatch exten
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugRuleElementMatch() {}
+  protected DebugRuleElementMatch() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatch_Type.java Thu Jul 12 08:58:05 2012
@@ -13,7 +13,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugRuleElementMatch_Type extends ProfiledAnnotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches.java Thu Jul 12 08:58:05 2012
@@ -11,8 +11,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugRuleElementMatches extends TOP {
   /** @generated
@@ -28,7 +28,7 @@ public class DebugRuleElementMatches ext
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugRuleElementMatches() {}
+  protected DebugRuleElementMatches() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleElementMatches_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.cas.TOP_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugRuleElementMatches_Type extends TOP_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugRuleMatch extends ProfiledAnnotation {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugRuleMatch extends Prof
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugRuleMatch() {}
+  protected DebugRuleMatch() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugRuleMatch_Type.java Thu Jul 12 08:58:05 2012
@@ -13,7 +13,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugRuleMatch_Type extends ProfiledAnnotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class DebugScriptApply extends ProfiledAnnotation {
   /** @generated
@@ -27,7 +27,7 @@ public class DebugScriptApply extends Pr
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected DebugScriptApply() {}
+  protected DebugScriptApply() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/DebugScriptApply_Type.java Thu Jul 12 08:58:05 2012
@@ -13,7 +13,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class DebugScriptApply_Type extends ProfiledAnnotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.tcas.Annotat
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class EvalAnnotation extends Annotation {
   /** @generated
@@ -27,7 +27,7 @@ public class EvalAnnotation extends Anno
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected EvalAnnotation() {}
+  protected EvalAnnotation() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/EvalAnnotation_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.tcas.Annotation_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class EvalAnnotation_Type extends Annotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class FalseNegative extends EvalAnnotation {
   /** @generated
@@ -27,7 +27,7 @@ public class FalseNegative extends EvalA
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected FalseNegative() {}
+  protected FalseNegative() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalseNegative_Type.java Thu Jul 12 08:58:05 2012
@@ -11,7 +11,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class FalseNegative_Type extends EvalAnnotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class FalsePositive extends EvalAnnotation {
   /** @generated
@@ -27,7 +27,7 @@ public class FalsePositive extends EvalA
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected FalsePositive() {}
+  protected FalsePositive() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/FalsePositive_Type.java Thu Jul 12 08:58:05 2012
@@ -11,7 +11,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class FalsePositive_Type extends EvalAnnotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.tcas.Annotat
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class ProfiledAnnotation extends Annotation {
   /** @generated
@@ -27,7 +27,7 @@ public class ProfiledAnnotation extends 
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected ProfiledAnnotation() {}
+  protected ProfiledAnnotation() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/ProfiledAnnotation_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.tcas.Annotation_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class ProfiledAnnotation_Type extends Annotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics.java Thu Jul 12 08:58:05 2012
@@ -13,8 +13,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class Statistics extends TOP {
   /** @generated
@@ -30,7 +30,7 @@ public class Statistics extends TOP {
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected Statistics() {}
+  protected Statistics() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/Statistics_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.cas.TOP_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class Statistics_Type extends TOP_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.tcas.Annotat
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class TextMarkerAnnotation extends Annotation {
   /** @generated
@@ -27,7 +27,7 @@ public class TextMarkerAnnotation extend
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected TextMarkerAnnotation() {}
+  protected TextMarkerAnnotation() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerAnnotation_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.tcas.Annotation_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class TextMarkerAnnotation_Type extends Annotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic.java Thu Jul 12 08:58:05 2012
@@ -16,13 +16,10 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.cas.TOP_Type;
 import org.apache.uima.jcas.tcas.Annotation;
 
-/**
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012 XML source: D:/work/workspace-
- * uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima
- * /textmarker/engine/BasicTypeSystem.xml
- * 
- * @generated
- */
+/** 
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
+ * @generated */
 public class TextMarkerBasic extends Annotation {
 
   private static final int INITIAL_CAPACITY = 2;
@@ -249,18 +246,15 @@ public class TextMarkerBasic extends Ann
 
   /** @generated */
   @Override
-  public int getTypeIndexID() {
-    return typeIndexID;
-  }
-
+  public int getTypeIndexID() {return typeIndexID;}
+ 
   /**
    * Never called. Disable default constructor
    * 
    * @generated
    */
-  protected TextMarkerBasic() {
-  }
-
+  protected TextMarkerBasic() {/* intentionally empty block */}
+    
   /**
    * Internal - constructor used by generator
    * 
@@ -270,12 +264,12 @@ public class TextMarkerBasic extends Ann
     super(addr, type);
     readObject();
   }
-
+  
   /** @generated */
   public TextMarkerBasic(JCas jcas) {
     super(jcas);
-    readObject();
-  }
+    readObject();   
+  } 
 
   /** @generated */
   public TextMarkerBasic(JCas jcas, int begin, int end) {
@@ -283,13 +277,10 @@ public class TextMarkerBasic extends Ann
     setBegin(begin);
     setEnd(end);
     readObject();
-  }
+  }   
 
-  /**
-   * <!-- begin-user-doc --> Write your own initialization here <!-- end-user-doc -->
-   * 
-   * @generated modifiable
-   */
+  /** <!-- begin-user-doc --> Write your own initialization here <!-- end-user-doc -->
+  @generated modifiable */
   private void readObject() {
   }
 
@@ -302,29 +293,20 @@ public class TextMarkerBasic extends Ann
    * @generated
    */
   public String getReplacement() {
-    if (TextMarkerBasic_Type.featOkTst
-            && ((TextMarkerBasic_Type) jcasType).casFeat_replacement == null)
-      jcasType.jcas.throwFeatMissing("replacement",
-              "org.apache.uima.textmarker.type.TextMarkerBasic");
-    return jcasType.ll_cas.ll_getStringValue(addr,
-            ((TextMarkerBasic_Type) jcasType).casFeatCode_replacement);
-  }
-
+    if (TextMarkerBasic_Type.featOkTst && ((TextMarkerBasic_Type)jcasType).casFeat_replacement == null)
+      jcasType.jcas.throwFeatMissing("replacement", "org.apache.uima.textmarker.type.TextMarkerBasic");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((TextMarkerBasic_Type)jcasType).casFeatCode_replacement);}
+    
   /**
    * setter for Replacement - sets
    * 
    * @generated
    */
   public void setReplacement(String v) {
-    if (TextMarkerBasic_Type.featOkTst
-            && ((TextMarkerBasic_Type) jcasType).casFeat_replacement == null)
-      jcasType.jcas.throwFeatMissing("replacement",
-              "org.apache.uima.textmarker.type.TextMarkerBasic");
-    jcasType.ll_cas.ll_setStringValue(addr,
-            ((TextMarkerBasic_Type) jcasType).casFeatCode_replacement, v);
-  }
-
-  public Map<Type, Set<AnnotationFS>> getEndMap() {
+    if (TextMarkerBasic_Type.featOkTst && ((TextMarkerBasic_Type)jcasType).casFeat_replacement == null)
+      jcasType.jcas.throwFeatMissing("replacement", "org.apache.uima.textmarker.type.TextMarkerBasic");
+    jcasType.ll_cas.ll_setStringValue(addr, ((TextMarkerBasic_Type)jcasType).casFeatCode_replacement, v);}    
+      public Map<Type, Set<AnnotationFS>> getEndMap() {
     return endMap;
   }
 

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerBasic_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.tcas.Annotation_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:33 CEST 2012
  * @generated */
 public class TextMarkerBasic_Type extends Annotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.tcas.Annotat
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:34 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class TextMarkerColoring extends Annotation {
   /** @generated
@@ -27,7 +27,7 @@ public class TextMarkerColoring extends 
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected TextMarkerColoring() {}
+  protected TextMarkerColoring() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerColoring_Type.java Thu Jul 12 08:58:05 2012
@@ -14,7 +14,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.tcas.Annotation_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:34 CEST 2012
  * @generated */
 public class TextMarkerColoring_Type extends Annotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.tcas.Annotat
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:34 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class TextMarkerFrame extends Annotation {
   /** @generated
@@ -27,7 +27,7 @@ public class TextMarkerFrame extends Ann
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected TextMarkerFrame() {}
+  protected TextMarkerFrame() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TextMarkerFrame_Type.java Thu Jul 12 08:58:05 2012
@@ -12,7 +12,7 @@ import org.apache.uima.jcas.JCasRegistry
 import org.apache.uima.jcas.tcas.Annotation_Type;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:34 CEST 2012
  * @generated */
 public class TextMarkerFrame_Type extends Annotation_Type {
   /** @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive.java Thu Jul 12 08:58:05 2012
@@ -10,8 +10,8 @@ import org.apache.uima.jcas.cas.TOP_Type
 
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
- * XML source: D:/work/workspace-uima3/uimaj-ep-textmarker-engine/src/main/java/org/apache/uima/textmarker/engine/BasicTypeSystem.xml
+ * Updated by JCasGen Thu Jul 12 10:42:34 CEST 2012
+ * XML source: D:/work/workspace-uima6/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/engine/InternalTypeSystem.xml
  * @generated */
 public class TruePositive extends EvalAnnotation {
   /** @generated
@@ -27,7 +27,7 @@ public class TruePositive extends EvalAn
  
   /** Never called.  Disable default constructor
    * @generated */
-  protected TruePositive() {}
+  protected TruePositive() {/* intentionally empty block */}
     
   /** Internal - constructor used by generator 
    * @generated */

Modified: uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive_Type.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive_Type.java?rev=1360586&r1=1360585&r2=1360586&view=diff
==============================================================================
--- uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive_Type.java (original)
+++ uima/sandbox/trunk/TextMarker/uimaj-textmarker/src/main/java/org/apache/uima/textmarker/type/TruePositive_Type.java Thu Jul 12 08:58:05 2012
@@ -11,7 +11,7 @@ import org.apache.uima.jcas.JCas;
 import org.apache.uima.jcas.JCasRegistry;
 
 /** 
- * Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
+ * Updated by JCasGen Thu Jul 12 10:42:34 CEST 2012
  * @generated */
 public class TruePositive_Type extends EvalAnnotation_Type {
   /** @generated */