Gutter associated with an
editor pane.See: Description
| Interface | Description |
|---|---|
| Gutter |
The
Gutter interface describes a visual component that
is displayed vertically to the left of a BasicEditorPane. |
| GutterClickListener |
The
GutterClickListener interface can be implemented
by clients interested in receiving a notification event for clicks
in the Gutter that are not associated with a given
GutterMark. |
| GutterColumn<M extends GutterMark> |
The
GutterColumn interface describes the non-visual
container that is used for creating GutterMark
instances for displaying icons in a Gutter. |
| GutterColumnListener<E> |
The
GutterColumnListener interface should be
implemented by clients interested in receiving notification events
associated with GutterMark instances within a
GutterColumn. |
| GutterMark<E> |
The
GutterMark is used by the Gutter
interface and implementations to mark a specific line in the
Gutter with an Icon. |
| Class | Description |
|---|---|
| LineGutterPlugin |
The
LineGutterPlugin is a line gutter which also
implements the Gutter interface that provides clients with
the ability to add or remove icon marks in the gutter associated
with an editor pane. |
| LineGutterPlugin.MarkComparator |
Comparator for our marks, ordering them by line, then by mark order.
|
Gutter associated with an
editor pane. It also contains a working implementation of a
Gutter that displays line numbers (in addition to the
icon support of the gutter.)
For more information, please refer to the JavaDoc for the
Gutter interface.