Uses of Class
org.eclipse.ui.texteditor.rulers.RulerColumnDescriptor
-
Packages that use RulerColumnDescriptor Package Description 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 RulerColumnDescriptor in org.eclipse.ui.texteditor
Methods in org.eclipse.ui.texteditor with parameters of type RulerColumnDescriptor Modifier and Type Method Description boolean
AbstractTextEditor.ColumnSupport. isColumnSupported(RulerColumnDescriptor descriptor)
boolean
AbstractTextEditor.ColumnSupport. isColumnVisible(RulerColumnDescriptor descriptor)
void
AbstractTextEditor.ColumnSupport. setColumnVisible(RulerColumnDescriptor descriptor, boolean visible)
-
Uses of RulerColumnDescriptor in org.eclipse.ui.texteditor.rulers
Methods in org.eclipse.ui.texteditor.rulers that return RulerColumnDescriptor Modifier and Type Method Description RulerColumnDescriptor
RulerColumnRegistry. getColumnDescriptor(String id)
Returns theRulerColumnDescriptor
with the given identity,null
if no such descriptor exists.RulerColumnDescriptor
AbstractContributedRulerColumn. getDescriptor()
RulerColumnDescriptor
IContributedRulerColumn. getDescriptor()
Returns the extension point descriptor of this ruler.Methods in org.eclipse.ui.texteditor.rulers that return types with arguments of type RulerColumnDescriptor Modifier and Type Method Description List<RulerColumnDescriptor>
RulerColumnRegistry. getColumnDescriptors()
Returns the list ofRulerColumnDescriptor
s describing all extensions to therulerColumns
extension point.Methods in org.eclipse.ui.texteditor.rulers with parameters of type RulerColumnDescriptor Modifier and Type Method Description boolean
IColumnSupport. isColumnSupported(RulerColumnDescriptor descriptor)
Returnstrue
if the column described bydescriptor
is supported by the receiver's editor,false
ifid
is not the identifier of a known column contribution, if the column does not target the editor, or if the editor does not support contributed columns.boolean
IColumnSupport. isColumnVisible(RulerColumnDescriptor descriptor)
Returnstrue
if the column described bydescriptor
is currently showing,false
if not.boolean
RulerColumnPreferenceAdapter. isEnabled(RulerColumnDescriptor descriptor)
Returns the enablement state of the given ruler contribution.void
IColumnSupport. setColumnVisible(RulerColumnDescriptor descriptor, boolean visible)
Attempts to set the visibility of the column described bydescriptor
.void
AbstractContributedRulerColumn. setDescriptor(RulerColumnDescriptor descriptor)
void
IContributedRulerColumn. setDescriptor(RulerColumnDescriptor descriptor)
Sets the extension point descriptor of this ruler.void
RulerColumnPreferenceAdapter. setEnabled(RulerColumnDescriptor descriptor, boolean enabled)
Sets the enablement state of the given ruler contribution.void
RulerColumnPreferenceAdapter. toggle(RulerColumnDescriptor descriptor)
Toggles the enablement state of given the ruler contribution.
-