| Package | Description | 
|---|---|
| oracle.javatools.buffer | 
 The  
TextBuffer package assists in the manipulation of
in-memory text content, whether it is read-only text, or read-write
text. | 
| oracle.javatools.editor.highlight | 
 The Highlights package is a subset of the Editor package, and contains
API's for creating, maintaining, and applying background, foreground,
font, and underline highlights to regions of text in an editor pane. 
 | 
| oracle.javatools.editor.plugins | 
 The Plugins package is a subset of the Editor package, and is one
way to extend the functionality of an editor pane. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
OffsetMark | 
TextBufferDecorator.addOffsetMark(int offset)
Create a new  
OffsetMark at the given location. | 
OffsetMark | 
TextBuffer.addOffsetMark(int offset)
Create a new  
OffsetMark at the given location. | 
OffsetMark | 
AbstractTextBuffer.addOffsetMark(int offset)
Create a new  
OffsetMark at the given location. | 
OffsetMark | 
TextBufferDecorator.addOffsetMark(int offset,
             boolean bias)
Create a new  
OffsetMark at the given location. | 
OffsetMark | 
TextBuffer.addOffsetMark(int offset,
             boolean bias)
Create a new  
OffsetMark at the given location. | 
OffsetMark | 
AbstractTextBuffer.addOffsetMark(int offset,
             boolean bias)
Create a new  
OffsetMark at the given location. | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
OffsetMarkComparator.compare(OffsetMark o1,
       OffsetMark o2)  | 
void | 
TextBufferDecorator.removeOffsetMark(OffsetMark offsetMark)
Remove an existing  
OffsetMark from the text buffer. | 
void | 
TextBuffer.removeOffsetMark(OffsetMark offsetMark)
Remove an existing  
OffsetMark from the text buffer. | 
void | 
AbstractTextBuffer.removeOffsetMark(OffsetMark offsetMark)
Remove an existing  
OffsetMark from the text buffer. | 
| Modifier and Type | Field and Description | 
|---|---|
protected OffsetMark | 
HighlightedText.endMark
The ending offset for this region of highlighted text (exclusive.) 
 | 
protected OffsetMark | 
HighlightedText.startMark
The starting offset for this region of highlighted text (exclusive.) 
 | 
| Constructor and Description | 
|---|
HighlightedLine(HighlightStyle highlightStyle,
               OffsetMark startMark,
               OffsetMark endMark)
Constructs a new HighlightedLine object. 
 | 
HighlightedText(HighlightStyle highlightStyle,
               OffsetMark startMark,
               OffsetMark endMark)
Constructs a new HighlightedText object 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected OffsetMark | 
DragDropPlugin.dropOffsetMark
The offset where the drop occurred. 
 |