Uses of Class
edu.columbia.cs.ref.model.Segment

Packages that use Segment
edu.columbia.cs.ref.model   
edu.columbia.cs.ref.tool.loader.document.impl.ace2005.resources   
edu.columbia.cs.ref.tool.segmentator   
edu.columbia.cs.ref.tool.segmentator.impl   
 

Uses of Segment in edu.columbia.cs.ref.model
 

Methods in edu.columbia.cs.ref.model that return types with arguments of type Segment
 java.util.List<Segment> Document.getPlainText()
          Obtains the segments that represent the content of the document
 

Method parameters in edu.columbia.cs.ref.model with type arguments of type Segment
 void Document.setPlainText(java.util.List<Segment> text)
          Sets the segments that represent the content of the document
 

Constructor parameters in edu.columbia.cs.ref.model with type arguments of type Segment
Document(java.util.List<Segment> text)
          From text constructor for documents that are not stored in disk
Document(java.lang.String path, java.lang.String fileName, java.util.List<Segment> text)
          Constructor of the Document
 

Uses of Segment in edu.columbia.cs.ref.tool.loader.document.impl.ace2005.resources
 

Methods in edu.columbia.cs.ref.tool.loader.document.impl.ace2005.resources that return types with arguments of type Segment
 java.util.List<Segment> ACEDocument.getSegments()
           
 

Method parameters in edu.columbia.cs.ref.tool.loader.document.impl.ace2005.resources with type arguments of type Segment
 void ACEDocument.setSegments(java.util.List<Segment> mStrText)
           
 

Uses of Segment in edu.columbia.cs.ref.tool.segmentator
 

Methods in edu.columbia.cs.ref.tool.segmentator that return types with arguments of type Segment
 java.util.List<Segment> DocumentSegmentator.segmentate(java.lang.String documentContent)
          This method receives as input the content of a document as a String and returns a division of the document as a List of sections
 

Uses of Segment in edu.columbia.cs.ref.tool.segmentator.impl
 

Methods in edu.columbia.cs.ref.tool.segmentator.impl that return types with arguments of type Segment
 java.util.List<Segment> SimpleSegmentDocumentSegmentator.segmentate(java.lang.String documentContent)