You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2016/03/07 22:26:46 UTC

svn commit: r1733985 - /uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/test/java/org/apache/uima/examples/SourceDocumentInformation.java

Author: schor
Date: Mon Mar  7 21:26:46 2016
New Revision: 1733985

URL: http://svn.apache.org/viewvc?rev=1733985&view=rev
Log:
[UIMA-4674] move copy of examples/ in the source tree to the test tree

Added:
    uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/test/java/org/apache/uima/examples/SourceDocumentInformation.java

Added: uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/test/java/org/apache/uima/examples/SourceDocumentInformation.java
URL: http://svn.apache.org/viewvc/uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/test/java/org/apache/uima/examples/SourceDocumentInformation.java?rev=1733985&view=auto
==============================================================================
--- uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/test/java/org/apache/uima/examples/SourceDocumentInformation.java (added)
+++ uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/test/java/org/apache/uima/examples/SourceDocumentInformation.java Mon Mar  7 21:26:46 2016
@@ -0,0 +1,155 @@
+/* Apache UIMA v3 - First created by JCasGen Wed Mar 02 13:42:57 EST 2016 */
+
+package org.apache.uima.examples;
+
+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.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 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
+   */
+  @SuppressWarnings ("hiding")
+  public final static int typeIndexID = JCasRegistry.register(SourceDocumentInformation.class);
+  /** @generated
+   * @ordered
+   */
+  @SuppressWarnings ("hiding")
+  public final static int type = typeIndexID;
+  /** @generated
+   * @return index of the type
+   */
+  @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(TypeImpl type, CASImpl casImpl) {
+    super(type, casImpl);
+    readObject();
+  }
+
+  /** @generated
+   * @param jcas JCas to which this Feature Structure belongs
+   */
+  public SourceDocumentInformation(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: 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) {
+    _setStringValueNfc(_getFeatFromAdjOffset(_FI_uri, false), 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) {
+    _setIntValueNfc(_getFeatFromAdjOffset(_FI_offsetInSource, true), 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) {
+    _setIntValueNfc(_getFeatFromAdjOffset(_FI_documentSize, true), 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) {
+    _setBooleanValueNfc(_getFeatFromAdjOffset(_FI_lastSegment, true), v);
+  }
+
+}
\ No newline at end of file