| org.eclipse.ui.texteditor.ITextEditorExtension4
All known Subclasses: org.eclipse.ui.texteditor.AbstractTextEditor,
ITextEditorExtension4 | public interface ITextEditorExtension4 (Code) | | Extension interface for
org.eclipse.ui.texteditor.ITextEditor . Adds
the following functions:
- annotation navigation
- revision information display
This interface may be implemented by clients.
since: 3.2 |
Method Summary | |
public Annotation | gotoAnnotation(boolean forward) Jumps to the next annotation according to the given direction. | public void | showRevisionInformation(RevisionInformation info, String quickDiffProviderId) Shows revision information in this editor. |
gotoAnnotation | public Annotation gotoAnnotation(boolean forward)(Code) | | Jumps to the next annotation according to the given direction.
Parameters: forward - true if search direction is forward, false if backward the selected annotation or null if none |
showRevisionInformation | public void showRevisionInformation(RevisionInformation info, String quickDiffProviderId)(Code) | | Shows revision information in this editor.
Parameters: info - the revision information to display Parameters: quickDiffProviderId - the quick diff provider that matches the source of the revisioninformation |
|
|