Author: schor
Date: Thu Jun 16 15:09:30 2016
New Revision: 1748742
URL: http://svn.apache.org/viewvc?rev=1748742&view=rev
Log:
[UIMA-4666] migrate SourceDocumentInformation JCas class, remove _Type classes
not needed, fix spelling of quote symbol
Removed:
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/example/PersonTitle_Type.java
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/org/apache/uima/examples/SourceDocumentInformation_Type.java
Modified:
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/org/apache/uima/examples/SourceDocumentInformation.java
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties
Modified:
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/org/apache/uima/examples/SourceDocumentInformation.java
URL:
http://svn.apache.org/viewvc/uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/org/apache/uima/examples/SourceDocumentInformation.java?rev=1748742&r1=1748741&r2=1748742&view=diff
==============================================================================
---
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/org/apache/uima/examples/SourceDocumentInformation.java
(original)
+++
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/java/org/apache/uima/examples/SourceDocumentInformation.java
Thu Jun 16 15:09:30 2016
@@ -1,224 +1,165 @@
-/*
- * 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.
- */
+
+
+
+/* Apache UIMA v3 - First created by JCasGen Wed Mar 02 13:42:57 EST 2016 */
package org.apache.uima.examples;
-import org.apache.uima.jcas.JCas;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.impl.TypeSystemImpl;
+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;
-/**
- * Stores detailed information about the original source document from which
the current CAS was
- * initialized. All information (like size) refers to the source document and
not to the document in
- * the CAS which may be converted and filtered by a CAS Initializer. For
example this information
- * will be written to the Semantic Search index so that the original document
contents can be
- * retrieved by queries. Updated by JCasGen Wed Nov 22 16:51:13 EST 2006 XML
source:
- *
C:/alally/dev/workspace_apache/uimaj-examples/src/main/resources/org/apache/uima/examples/SourceDocumentInformation.xml
- *
- * @generated
- */
+
+/**
+ * Stores detailed information about the original source document from which
the current CAS was initialized.
+ * All information (like size) refers to the source document and not to the
document in the CAS
+ * which may be converted and filtered by a CAS Initializer.
+ * For example this information will be written to the Semantic Search index
so that the original document contents
+ * can be retrieved by queries.
+ * Updated by JCasGen Wed Mar 02 13:42:57 EST 2016
+ * XML source:
C:/au/svnCheckouts/branches/uimaj/experiment-v3-jcas/uimaj-examples/src/main/resources/org/apache/uima/examples/SourceDocumentInformation.xml
+ * @generated */
public class SourceDocumentInformation extends Annotation {
- /**
- * @generated
- * @ordered
+ /** @generated
+ * @ordered
*/
+ @SuppressWarnings ("hiding")
public final static int typeIndexID =
JCasRegistry.register(SourceDocumentInformation.class);
-
- /**
- * @generated
- * @ordered
+ /** @generated
+ * @ordered
*/
+ @SuppressWarnings ("hiding")
public final static int type = typeIndexID;
-
- /** @generated */
- public int getTypeIndexID() {
- return typeIndexID;
- }
-
- /**
- * Never called. Disable default constructor
- *
- * @generated
+ /** @generated
+ * @return index of the type
*/
- protected SourceDocumentInformation() {
- }
-
- /**
- * Internal - constructor used by generator
- *
+ @Override
+ public int getTypeIndexID() {return typeIndexID;}
+
+
+ /* *******************
+ * Feature Offsets *
+ * *******************/
+
+ /* Feature Adjusted Offsets */
+ public final static int _FI_uri =
TypeSystemImpl.getAdjustedFeatureOffset("uri");
+ public final static int _FI_offsetInSource =
TypeSystemImpl.getAdjustedFeatureOffset("offsetInSource");
+ public final static int _FI_documentSize =
TypeSystemImpl.getAdjustedFeatureOffset("documentSize");
+ public final static int _FI_lastSegment =
TypeSystemImpl.getAdjustedFeatureOffset("lastSegment");
+
+
+ /** Never called. Disable default constructor
+ * @generated */
+ protected SourceDocumentInformation() {/* intentionally empty block */}
+
+ /** Internal - constructor used by generator
* @generated
+ * @param casImpl the CAS this Feature Structure belongs to
+ * @param type the type of this Feature Structure
*/
- public SourceDocumentInformation(int addr, TOP_Type type) {
- super(addr, type);
+ public SourceDocumentInformation(TypeImpl type, CASImpl casImpl) {
+ super(type, casImpl);
readObject();
}
-
- /** @generated */
+
+ /** @generated
+ * @param jcas JCas to which this Feature Structure belongs
+ */
public SourceDocumentInformation(JCas jcas) {
super(jcas);
- readObject();
- }
-
- /** @generated */
- public SourceDocumentInformation(JCas jcas, int begin, int end) {
- super(jcas);
- setBegin(begin);
- setEnd(end);
- readObject();
- }
-
- /**
- * <!-- begin-user-doc --> Write your own initialization here <!--
end-user-doc -->
- *
- * @generated modifiable
- */
- private void readObject() {
- }
-
- // *--------------*
- // * Feature: uri
-
- /**
- * getter for uri - gets URI of document. (For example,
file:///MyDirectory/myFile.txt for a
- * simple file or http://incubator.apache.org/uima/index.html for content
from a web source.)
- *
- * @generated
- */
- public String getUri() {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type) jcasType).casFeat_uri == null)
- this.jcasType.jcas.throwFeatMissing("uri",
"org.apache.uima.examples.SourceDocumentInformation");
- return jcasType.ll_cas.ll_getStringValue(addr,
- ((SourceDocumentInformation_Type) jcasType).casFeatCode_uri);
- }
+ readObject();
+ }
- /**
- * setter for uri - sets URI of document. (For example,
file:///MyDirectory/myFile.txt for a
- * simple file or http://incubator.apache.org/uima/index.html for content
from a web source.)
- *
+ /**
+ * <!-- begin-user-doc -->
+ * Write your own initialization here
+ * <!-- end-user-doc -->
+ *
+ * @generated modifiable
+ */
+ private void readObject() {/*default - does nothing empty block */}
+
+
+
+ //*--------------*
+ //* Feature: uri
+
+ /** getter for uri - gets URI of document. (For example,
file:///MyDirectory/myFile.txt for a simple file or
http://incubator.apache.org/uima/index.html for content from a web source.)
+ * @generated
+ * @return value of the feature
+ */
+ public String getUri() { return _getStringValueNc(_FI_uri);}
+
+ /** setter for uri - sets URI of document. (For example,
file:///MyDirectory/myFile.txt for a simple file or
http://incubator.apache.org/uima/index.html for content from a web source.)
* @generated
+ * @param v value to set into the feature
*/
public void setUri(String v) {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type) jcasType).casFeat_uri == null)
- this.jcasType.jcas.throwFeatMissing("uri",
"org.apache.uima.examples.SourceDocumentInformation");
- jcasType.ll_cas.ll_setStringValue(addr,
- ((SourceDocumentInformation_Type) jcasType).casFeatCode_uri, v);
- }
-
- // *--------------*
- // * Feature: offsetInSource
-
- /**
- * getter for offsetInSource - gets Byte offset of the start of document
content within original
- * source file or other input source. Only used if the CAS document was
retrieved from an source
- * where one physical source file contained several conceptual documents.
Zero otherwise.
- *
- * @generated
- */
- public int getOffsetInSource() {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type)
jcasType).casFeat_offsetInSource == null)
- this.jcasType.jcas.throwFeatMissing("offsetInSource",
"org.apache.uima.examples.SourceDocumentInformation");
- return jcasType.ll_cas.ll_getIntValue(addr,
- ((SourceDocumentInformation_Type)
jcasType).casFeatCode_offsetInSource);
- }
-
- /**
- * setter for offsetInSource - sets Byte offset of the start of document
content within original
- * source file or other input source. Only used if the CAS document was
retrieved from an source
- * where one physical source file contained several conceptual documents.
Zero otherwise.
- *
+ _setStringValueNfc(_FI_uri, v);
+ }
+
+
+
+ //*--------------*
+ //* Feature: offsetInSource
+
+ /** getter for offsetInSource - gets Byte offset of the start of document
content within original source file or other input source. Only used if the CAS
document was retrieved from an source where one physical source file contained
several conceptual documents. Zero otherwise.
+ * @generated
+ * @return value of the feature
+ */
+ public int getOffsetInSource() { return _getIntValueNc(_FI_offsetInSource);}
+
+ /** setter for offsetInSource - sets Byte offset of the start of document
content within original source file or other input source. Only used if the CAS
document was retrieved from an source where one physical source file contained
several conceptual documents. Zero otherwise.
* @generated
+ * @param v value to set into the feature
*/
public void setOffsetInSource(int v) {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type)
jcasType).casFeat_offsetInSource == null)
- this.jcasType.jcas.throwFeatMissing("offsetInSource",
"org.apache.uima.examples.SourceDocumentInformation");
- jcasType.ll_cas.ll_setIntValue(addr,
- ((SourceDocumentInformation_Type)
jcasType).casFeatCode_offsetInSource, v);
- }
-
- // *--------------*
- // * Feature: documentSize
-
- /**
- * getter for documentSize - gets Size of original document in bytes before
processing by CAS
- * Initializer. Either absolute file size of size within file or other
source.
- *
- * @generated
- */
- public int getDocumentSize() {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type)
jcasType).casFeat_documentSize == null)
- this.jcasType.jcas.throwFeatMissing("documentSize",
"org.apache.uima.examples.SourceDocumentInformation");
- return jcasType.ll_cas.ll_getIntValue(addr,
- ((SourceDocumentInformation_Type)
jcasType).casFeatCode_documentSize);
- }
-
- /**
- * setter for documentSize - sets Size of original document in bytes before
processing by CAS
- * Initializer. Either absolute file size of size within file or other
source.
- *
+ _setIntValueNfc(_FI_offsetInSource, v);
+ }
+
+
+
+ //*--------------*
+ //* Feature: documentSize
+
+ /** getter for documentSize - gets Size of original document in bytes before
processing by CAS Initializer. Either absolute file size of size within file or
other source.
+ * @generated
+ * @return value of the feature
+ */
+ public int getDocumentSize() { return _getIntValueNc(_FI_documentSize);}
+
+ /** setter for documentSize - sets Size of original document in bytes before
processing by CAS Initializer. Either absolute file size of size within file or
other source.
* @generated
+ * @param v value to set into the feature
*/
public void setDocumentSize(int v) {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type)
jcasType).casFeat_documentSize == null)
- this.jcasType.jcas.throwFeatMissing("documentSize",
"org.apache.uima.examples.SourceDocumentInformation");
- jcasType.ll_cas.ll_setIntValue(addr,
- ((SourceDocumentInformation_Type)
jcasType).casFeatCode_documentSize, v);
- }
-
- // *--------------*
- // * Feature: lastSegment
-
- /**
- * getter for lastSegment - gets For a CAS that represents a segment of a
larger source document,
- * this flag indicates whether this CAS is the final segment of the source
document. This is
- * useful for downstream components that want to take some action after
having seen all of the
- * segments of a particular source document.
- *
- * @generated
- */
- public boolean getLastSegment() {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type) jcasType).casFeat_lastSegment
== null)
- this.jcasType.jcas.throwFeatMissing("lastSegment",
"org.apache.uima.examples.SourceDocumentInformation");
- return jcasType.ll_cas.ll_getBooleanValue(addr,
- ((SourceDocumentInformation_Type)
jcasType).casFeatCode_lastSegment);
- }
-
- /**
- * setter for lastSegment - sets For a CAS that represents a segment of a
larger source document,
- * this flag indicates whether this CAS is the final segment of the source
document. This is
- * useful for downstream components that want to take some action after
having seen all of the
- * segments of a particular source document.
- *
+ _setIntValueNfc(_FI_documentSize, v);
+ }
+
+
+
+ //*--------------*
+ //* Feature: lastSegment
+
+ /** getter for lastSegment - gets For a CAS that represents a segment of a
larger source document, this flag indicates whether this CAS is the final
segment of the source document. This is useful for downstream components that
want to take some action after having seen all of the segments of a particular
source document.
+ * @generated
+ * @return value of the feature
+ */
+ public boolean getLastSegment() { return
_getBooleanValueNc(_FI_lastSegment);}
+
+ /** setter for lastSegment - sets For a CAS that represents a segment of a
larger source document, this flag indicates whether this CAS is the final
segment of the source document. This is useful for downstream components that
want to take some action after having seen all of the segments of a particular
source document.
* @generated
+ * @param v value to set into the feature
*/
public void setLastSegment(boolean v) {
- if (SourceDocumentInformation_Type.featOkTst
- && ((SourceDocumentInformation_Type) jcasType).casFeat_lastSegment
== null)
- this.jcasType.jcas.throwFeatMissing("lastSegment",
"org.apache.uima.examples.SourceDocumentInformation");
- jcasType.ll_cas.ll_setBooleanValue(addr,
- ((SourceDocumentInformation_Type)
jcasType).casFeatCode_lastSegment, v);
+ _setBooleanValueNfc(_FI_lastSegment, v);
+ }
+
}
-}
+
+
\ No newline at end of file
Modified:
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties
URL:
http://svn.apache.org/viewvc/uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties?rev=1748742&r1=1748741&r2=1748742&view=diff
==============================================================================
---
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties
(original)
+++
uima/uimaj/branches/experiment-v3-jcas/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties
Thu Jun 16 15:09:30 2016
@@ -24,6 +24,6 @@
missing_source_document_info = This example CAS Multiplier requires the input
type \
org.apache.uima.examples.SourceDocumentInformation, which was not present
in the input CAS.
-no_next_cas = The CAS Multiplier's next() method was called when there was no
next CAS to \
+no_next_cas = The CAS Multiplier''s next() method was called when there was no
next CAS to \
be retrieved.
\ No newline at end of file