Uses of Interface
gate.DocumentContent

Packages that use DocumentContent
gate  
gate.annotation   
gate.corpora   
gate.persist   
 

Uses of DocumentContent in gate
 

Methods in gate that return DocumentContent
 DocumentContent DocumentContent.getContent(Long start, Long end)
          The contents under a particular span.
 DocumentContent Document.getContent()
          The content of the document: wraps e.g.
 

Methods in gate with parameters of type DocumentContent
 void Document.setContent(DocumentContent newContent)
          Set method for the document content
 void Document.edit(Long start, Long end, DocumentContent replacement)
          Make changes to the content.
 

Uses of DocumentContent in gate.annotation
 

Methods in gate.annotation with parameters of type DocumentContent
 void AnnotationSetImpl.edit(Long start, Long end, DocumentContent replacement)
          Propagate changes to the document content.
 

Uses of DocumentContent in gate.corpora
 

Classes in gate.corpora that implement DocumentContent
 class DocumentContentImpl
          Represents the commonalities between all sorts of document contents.
 

Fields in gate.corpora declared as DocumentContent
protected  DocumentContent DocumentImpl.content
          The content of the document
 

Methods in gate.corpora that return DocumentContent
 DocumentContent DocumentContentImpl.getContent(Long start, Long end)
          The contents under a particular span.
 DocumentContent DocumentImpl.getContent()
          The content of the document: a String for text; MPEG for video; etc.
 DocumentContent DatabaseDocumentImpl.getContent()
          The content of the document: a String for text; MPEG for video; etc.
 

Methods in gate.corpora with parameters of type DocumentContent
(package private)  void DocumentContentImpl.edit(Long start, Long end, DocumentContent replacement)
          Propagate changes to the document content.
 void DocumentImpl.setContent(DocumentContent content)
          Set method for the document content
 void DocumentImpl.edit(Long start, Long end, DocumentContent replacement)
          Propagate edit changes to the document content and annotations.
 void DatabaseDocumentImpl.setContent(DocumentContent content)
          Set method for the document content
 

Uses of DocumentContent in gate.persist
 

Fields in gate.persist declared as DocumentContent
private static DocumentContent TestPersist.sample_content
           
 

Methods in gate.persist with parameters of type DocumentContent
protected  void PostgresDataStore.updateDocumentContent(Long docID, DocumentContent content)
          updates the content of the document if it is binary or a long string (that does not fit into VARCHAR2)
protected abstract  void JDBCDataStore.updateDocumentContent(Long docID, DocumentContent content)
           
protected  void OracleDataStore.updateDocumentContent(Long docID, DocumentContent content)
          updates the content of the document if it is binary or a long string (that does not fit into VARCHAR2)