|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Span | |
org.annotation.util | Provides utility functionality that is used in WordFreak but which is not specific to WordFreak. |
org.annotation.wordfreak | Provides main WordFreak functionality including data structures for annotation and the infrastructure for components to communicate. |
org.annotation.wordfreak.annotator | Provides automatic annotation or tagging functionality for WordFreak. |
org.annotation.wordfreak.chooser | Provides the annotation input functionality for WordFreak. |
org.annotation.wordfreak.command | Provides undo functionality for WordFreak. |
org.annotation.wordfreak.scheme | Provides suppot for creating new annotation specifications or annotation schemes within WordFreak. |
org.annotation.wordfreak.viewer | Provides functionality to display of source material over which annotation is performed and the annotations themselves. |
Uses of Span in org.annotation.util |
Subclasses of Span in org.annotation.util | |
class |
CompoundSpan
|
Fields in org.annotation.util declared as Span | |
protected Span |
SpanTreeNode.span
|
Methods in org.annotation.util that return Span | |
static Span |
Span.parseSpan(java.lang.String s)
|
Span |
SpanTreeNode.getSpan()
|
Methods in org.annotation.util with parameters of type Span | |
SpanTreeNode |
SpanTreeNode.getNode(Span s)
|
protected int |
SpanTreeNode.findInsertionIndex(Span s)
returns the index where the span s would be inserted if the spans were sorted based on their start index alone. |
SpanTreeNode |
SpanTreeNode.getContainerNodeWithProperty(Span s,
java.lang.String p)
Finds node having property p which contains span
s |
SpanTreeNode[] |
SpanTreeNode.getContainedNodesWithProperty(Span s,
java.lang.String p,
boolean top)
Finds nodes which are contained by span s and have
property p . |
Constructors in org.annotation.util with parameters of type Span | |
CompoundSpan(Span s,
Span e)
|
|
SpanTreeNode(Span s,
java.lang.Object data)
|
Uses of Span in org.annotation.wordfreak |
Methods in org.annotation.wordfreak that return Span | |
Span |
Annotation.getSpan()
Returns the span for this annotation. |
Span |
AnnotationFile.getSpan()
|
Span |
UnmarkedTextAnnotationView.getValidSelection(int s,
int e)
|
Span |
AnnotationView.getValidSelection(int s,
int e)
Returns appropiate selection based on selection mode and attempted selection, null is returned if no selection is appropiate. |
Span |
DefaultAnnotationView.getValidSelection(int start,
int end)
|
Methods in org.annotation.wordfreak with parameters of type Span | |
void |
Annotation.setSpan(Span s)
|
void |
Annotation.setSpan(Span s,
boolean update)
|
Annotation |
AnnotationTree.getContainingNode(Span span)
Returns the deepest annotation which contains the specified span. |
boolean |
AnnotationTree.isValidSpan(Span span)
Returns true if the specified span can be inserted into this tree without crossing another annotation. |
boolean |
AnnotationTree.isTerminalSpan(Span span)
Returns true if the specified span can be inserted into this tree as a leaf. |
void |
WordFreakKeyboardFocusManager.select(Span s)
|
Annotation |
DefaultAnnotationView.getContainingNode(Span span)
Returns the leaf which contains the offset. |
Constructors in org.annotation.wordfreak with parameters of type Span | |
Annotation(AnnotationTree tree,
Span span)
Creates a new annotation with the given tree and span. |
|
Annotation(AnnotationTree tree,
Span span,
Annotation[] children)
Creates a new annotatinon with the given tree and children. |
|
Annotation(AnnotationTree tree,
Span span,
java.lang.String type,
java.lang.String annotator,
double confidence)
Creates a new annotation with the given tree, span, type, annotator and confidence. |
|
Annotation(AnnotationTree tree,
Span span,
java.lang.String type,
java.lang.String annotator,
double confidence,
java.lang.String comment)
Creates a new annotation with the given tree, span, type, annotator, confidence and comment. |
|
Annotation(AnnotationTree tree,
Span s,
java.util.List children)
Creates a new annotation with the given tree and children. |
|
Annotation(AnnotationTree tree,
Span span,
java.util.List children,
java.lang.String type,
java.lang.String annotator,
double confidence)
Creates a new annotation with the given tree, children, type, annotator and confidence. |
Uses of Span in org.annotation.wordfreak.annotator |
Methods in org.annotation.wordfreak.annotator that return Span | |
protected abstract Span[] |
TokenAnnotator.tokenize(java.lang.String text)
Returns character offsets which are the tokens of the text parametter. |
protected abstract Span[] |
SentenceAnnotator.sentDetect(java.lang.String s)
|
static Span[] |
ParagraphFinder.format(java.lang.String d)
|
Span[] |
SimpleTokenizer.tokenize(java.lang.String s)
|
Span[] |
SimpleTokenAnnotator.tokenize(java.lang.String s)
|
Methods in org.annotation.wordfreak.annotator with parameters of type Span | |
protected abstract void |
TokenAnnotator.trainWithTokens(Span[] tokens,
java.lang.String text)
Uses the tokens provided to construct events for traiing the current tokenizer model. |
protected void |
SimpleTokenAnnotator.trainWithTokens(Span[] spans,
java.lang.String name)
|
Uses of Span in org.annotation.wordfreak.chooser |
Methods in org.annotation.wordfreak.chooser with parameters of type Span | |
void |
RelationComponent.select(Span s)
|
void |
ChooserComponent.select(Span s)
|
Uses of Span in org.annotation.wordfreak.command |
Constructors in org.annotation.wordfreak.command with parameters of type Span | |
SetSpanCommand(Annotation a,
Span s)
|
|
SetSpanCommand(Annotation a,
Span s,
boolean b)
|
|
SetSpanCommand(Annotation a,
Span s,
boolean b,
boolean d)
|
Uses of Span in org.annotation.wordfreak.scheme |
Methods in org.annotation.wordfreak.scheme with parameters of type Span | |
void |
AnnotationSchemeAdapter.select(Span s)
|
void |
AnnotationSchemeListener.select(Span selectionSpan)
Notifies the listner that the specified selection span should be displayed as selected. |
Uses of Span in org.annotation.wordfreak.viewer |
Methods in org.annotation.wordfreak.viewer with parameters of type Span | |
void |
TextViewer.select(Span selectionSpan)
|
void |
StatusBar.setSpan(Span span)
Tells this status bar that the annotation currently being displayed has the specified span. |
void |
StatusBar.setSelection(Span selection)
Tells this status bar that the specific span is currently being selected. |
void |
Viewer.select(Span selectionSpan)
|
void |
DebugViewer.select(Span s)
|
void |
ConcordanceViewer.select(Span s)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |