Uses of Interface
gate.gui.docview.DocumentView

Packages that use DocumentView
gate.gui.docview   
 

Uses of DocumentView in gate.gui.docview
 

Subinterfaces of DocumentView in gate.gui.docview
 interface AnnotationList
          Interface for document views showing a list of annotations.
 

Classes in gate.gui.docview that implement DocumentView
 class AbstractDocumentView
          A convenience implementation of DocumentView that can be extended by implementers of document views.
 class AnnotationListView
          A tabular view for a list of annotations.
 class AnnotationSetsView
          Display document annotation sets and types in a tree view like with a table.
 class AnnotationStackView
          Show a stack view of highlighted annotations in the document centred on the document caret.
 class CorefEditor
          Display a tree that contains the co-references type of the document, highlight co-references in the document, allow creating co-references from existing annotations, editing and deleting co-references.
 class OntologyClassView
          Document view that displays an ontology class tree to annotate a document.
 class OntologyInstanceView
          Document view that shows two tables: one instances and one for properties.
 class TextualDocumentView
          This class provides a central view for a textual document.
 

Fields in gate.gui.docview with type parameters of type DocumentView
protected  List<DocumentView> DocumentEditor.centralViews
          A list of DocumentView objects of type CENTRAL
protected  List<DocumentView> DocumentEditor.horizontalViews
          A list of DocumentView objects of type HORIZONTAL
protected  List<DocumentView> DocumentEditor.verticalViews
          A list of DocumentView objects of type VERTICAL
 

Methods in gate.gui.docview that return DocumentView
protected  DocumentView DocumentEditor.getBottomView()
          Gets the currently showing bottom view
protected  DocumentView DocumentEditor.getCentralView()
          Gets the currently showing central view
protected  DocumentView DocumentEditor.getRightView()
          Gets the currently showing right view
protected  DocumentView DocumentEditor.getTopView()
          Gets the currently showing top view
 

Methods in gate.gui.docview that return types with arguments of type DocumentView
 List<DocumentView> DocumentEditor.getCentralViews()
           
 List<DocumentView> DocumentEditor.getHorizontalViews()
           
 List<DocumentView> DocumentEditor.getVerticalViews()
           
 

Methods in gate.gui.docview with parameters of type DocumentView
protected  void DocumentEditor.addView(DocumentView view, String name)
          Registers a new view by adding it to the right list and creating the activation button for it.
protected  void DocumentEditor.setBottomView(DocumentView view)
          Sets a new UI component in the top location.
protected  void DocumentEditor.setCentralView(DocumentView view)
          Sets a new UI component in the central location.
protected  void DocumentEditor.setRightView(DocumentView view)
          Sets a new UI component in the right hand side location.
protected  void DocumentEditor.setTopView(DocumentView view)
          Sets a new UI component in the top location.
 

Constructors in gate.gui.docview with parameters of type DocumentView
DocumentEditor.ViewButton(DocumentView aView, String name)