Uses of Interface
org.eclipse.jface.text.source.IVerticalRulerColumn
-
Packages that use IVerticalRulerColumn Package Description org.eclipse.jface.text.revisions Provides a revision model and a protocol to display revision information in a vertical ruler column.org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those.org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules.org.eclipse.ui.texteditor.rulers Provides interfaces and classes for theorg.eclipse.ui.workbench.texteditor.rulerColumns
. -
-
Uses of IVerticalRulerColumn in org.eclipse.jface.text.revisions
Subinterfaces of IVerticalRulerColumn in org.eclipse.jface.text.revisions Modifier and Type Interface Description interface
IRevisionRulerColumn
A vertical ruler column capable of displaying revision (annotate) information. -
Uses of IVerticalRulerColumn in org.eclipse.jface.text.source
Subinterfaces of IVerticalRulerColumn in org.eclipse.jface.text.source Modifier and Type Interface Description interface
IChangeRulerColumn
AnIChangeRulerColumn
can display quick diff information.Classes in org.eclipse.jface.text.source that implement IVerticalRulerColumn Modifier and Type Class Description class
AbstractRulerColumn
Abstract implementation of aIVerticalRulerColumn
that uses aCanvas
to draw the ruler contents and which handles scrolling and mouse selection.class
AnnotationColumn
Deprecated.useAnnotationRulerColumn(int)
instead.class
AnnotationRulerColumn
A vertical ruler column showing graphical representations of annotations.class
ChangeRulerColumn
A vertical ruler column displaying line numbers and serving as a UI for quick diff.class
LineNumberChangeRulerColumn
A vertical ruler column displaying line numbers and serving as a UI for quick diff.class
LineNumberRulerColumn
A vertical ruler column displaying line numbers.Methods in org.eclipse.jface.text.source that return types with arguments of type IVerticalRulerColumn Modifier and Type Method Description Iterator<IVerticalRulerColumn>
CompositeRuler. getDecoratorIterator()
Returns an iterator over theIVerticalRulerColumns
that make up this composite column.Methods in org.eclipse.jface.text.source with parameters of type IVerticalRulerColumn Modifier and Type Method Description void
CompositeRuler. addDecorator(int index, IVerticalRulerColumn rulerColumn)
Inserts the given column at the specified slot to this composite ruler.void
SourceViewer. addVerticalRulerColumn(IVerticalRulerColumn column)
Adds the give column as last column to this viewer's vertical ruler.void
CompositeRuler. removeDecorator(IVerticalRulerColumn rulerColumn)
Removes the given decorator from the composite ruler.void
SourceViewer. removeVerticalRulerColumn(IVerticalRulerColumn column)
Removes the give column from this viewer's vertical ruler. -
Uses of IVerticalRulerColumn in org.eclipse.ui.texteditor
Methods in org.eclipse.ui.texteditor that return IVerticalRulerColumn Modifier and Type Method Description protected IVerticalRulerColumn
AbstractDecoratedTextEditor. createAnnotationRulerColumn(CompositeRuler ruler)
Creates the annotation ruler column.protected IVerticalRulerColumn
AbstractDecoratedTextEditor. createLineNumberRulerColumn()
Creates a new line number ruler column that is appropriately initialized. -
Uses of IVerticalRulerColumn in org.eclipse.ui.texteditor.rulers
Subinterfaces of IVerticalRulerColumn in org.eclipse.ui.texteditor.rulers Modifier and Type Interface Description interface
IContributedRulerColumn
Interface that has to be implemented by contributions to theorg.eclipse.ui.texteditor.rulerColumns
extension point.Classes in org.eclipse.ui.texteditor.rulers that implement IVerticalRulerColumn Modifier and Type Class Description class
AbstractContributedRulerColumn
Helper class for contributions to theorg.eclipse.ui.texteditor.rulerColumns
extension point.
-