Uses of Interface
gate.gui.annedit.AnnotationData

Packages that use AnnotationData
gate.gui.annedit   
gate.gui.docview   
 

Uses of AnnotationData in gate.gui.annedit
 

Classes in gate.gui.annedit that implement AnnotationData
 class AnnotationDataImpl
          A simple reusable implementation of AnnotationData.
 

Methods in gate.gui.annedit with parameters of type AnnotationData
 void AnnotationEditorOwner.selectAnnotation(AnnotationData aData)
          Called by the editor when a new annotation needs to be selected.
 

Uses of AnnotationData in gate.gui.docview
 

Fields in gate.gui.docview declared as AnnotationData
private  AnnotationData AnnotationSetsView.EditAnnotationAction.aData
           
(package private)  AnnotationData AnnotationStackView.AnnotationMouseListener.annotationData
           
 

Fields in gate.gui.docview with type parameters of type AnnotationData
protected  List<AnnotationData> AnnotationListView.annDataList
          Stores the AnnotationData objects representing the annotations displayed by this view.
(package private)  Map<Integer,AnnotationData> AnnotationSetsView.TypeHandler.annListTagsForAnn
          Map from annotation ID (which is immutable) to AnnotationListView tag
protected  List<AnnotationData> TextualDocumentView.blinkingHighlightsToAdd
          Used internally to store the annotations for which blinking highlights need to be added.
protected  Set<AnnotationData> TextualDocumentView.blinkingHighlightsToRemove
          Used internally to store the annotations for which blinking highlights need to be removed.
protected  Map<AnnotationData,TextualDocumentView.HighlightData> TextualDocumentView.blinkingTagsForAnnotations
          The annotations used for blinking highlights and their tags.
private  List<AnnotationData> DocumentEditor.selectedAnnotations
          Cahced value for the selected annotations.
 

Methods in gate.gui.docview that return AnnotationData
 AnnotationData AnnotationList.getAnnotationAtRow(int row)
          Provides the annotation
 AnnotationData AnnotationListView.getAnnotationAtRow(int row)
          (non-Javadoc)
 

Methods in gate.gui.docview that return types with arguments of type AnnotationData
 List<AnnotationData> AnnotationListView.addAnnotations(List<Annotation> annotations, AnnotationSet set)
          Adds a batch of annotations in one go.
 List<AnnotationData> AnnotationListView.getAllAnnotations()
          Returns the tags for all the annotations currently displayed
 List<AnnotationData> DocumentEditor.getSelectedAnnotations()
          Gets the current set of selected annotations.
 

Methods in gate.gui.docview with parameters of type AnnotationData
 Object TextualDocumentView.addHighlight(AnnotationData aData, Color colour)
           
 int AnnotationList.getRowForAnnotation(AnnotationData aData)
          Returns the display row for a given annotation.
 int AnnotationListView.getRowForAnnotation(AnnotationData data)
           
 void AnnotationListView.removeAnnotation(AnnotationData tag)
           
 void AnnotationListView.selectAnnotation(AnnotationData data)
           
 void AnnotationSetsView.selectAnnotation(AnnotationData aData)
          Queues an an action for selecting the provided annotation
 

Method parameters in gate.gui.docview with type arguments of type AnnotationData
 List TextualDocumentView.addHighlights(Collection<AnnotationData> annotations, Color colour)
          Adds several highlights in one go.
 void AnnotationListView.removeAnnotations(Collection<AnnotationData> tags)
           
 void AbstractDocumentView.setSelectedAnnotations(List<AnnotationData> selectedAnnots)
           
 void AnnotationListView.setSelectedAnnotations(List<AnnotationData> selectedAnnots)
           
 void AnnotationSetsView.setSelectedAnnotations(List<AnnotationData> selectedAnnots)
           
 void DocumentEditor.setSelectedAnnotations(List<AnnotationData> selectedAnnots)
          Change the set of selected annotations.
 void DocumentView.setSelectedAnnotations(List<AnnotationData> selectedAnnots)
          Some document views can use the concept of selected annotations.
 void TextualDocumentView.setSelectedAnnotations(List<AnnotationData> selectedAnnots)
          Removes all blinking highlights and shows the new ones, corresponding to the new set of selected annotations
 

Constructors in gate.gui.docview with parameters of type AnnotationData
AnnotationSetsView.EditAnnotationAction(AnnotationData aData)
           
TextualDocumentView.HighlightData(AnnotationData aData, Color colour)