Package | Description |
---|---|
oracle.ide.ceditor |
The
Code Editor package contains the code editing implementation of the JDeveloper IDE. |
oracle.javatools.compare.view | |
oracle.javatools.compare.view.wedge | |
oracle.javatools.controls |
Contains user interface utilities that do not depend directly on the JDeveloper framework.
|
oracle.javatools.editor |
The
Editor package is a basic framework for an editor component with syntax highlighting capabilities, built on top of the Swing text framework. |
oracle.javatools.editor.folding |
Provides classes and interfaces for supporting collapsible source code blocks in the code editor.
|
oracle.javatools.editor.gutter |
The Line Gutter package is a subset of the Editor package, and contains API for working with a
Gutter associated with an editor pane. |
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.insight |
The Code Insight package is a subset of the Editor package, and is the starting base for a code insight implementation to provide the user with code assistance features.
|
oracle.javatools.editor.language |
The Language package is a subset of the Editor package, and is the framework for extending the editor with color syntax highlighting, brace matching, and other language or content-specific editing features.
|
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.
|
oracle.javatools.editor.popup |
The Popup Window package is a subset of the Editor package, and is used to display popup windows associated with the editor.
|
oracle.jdeveloper.merge |
Contains classes for merge editor abstractions, including an editor addin, commands, a controller, and utilities.
|
Modifier and Type | Field and Description |
---|---|
protected BasicEditorPane |
BreadcrumbsPlugin.editor |
Modifier and Type | Method and Description |
---|---|
protected BasicEditorPane |
DropHandlerPlugin.getEditorPane()
Fetch the editor.
|
protected BasicEditorPane |
AbstractEditingPlugin.getEditorPane() |
static BasicEditorPane |
CodeEditorUtils.getEditorPaneFromContext(Context context)
Utility routine to fetch the BasicEditorPane instance from the context.
|
static BasicEditorPane |
CodeEditorController.getEditorPaneFromContext(Context context)
Utility routine to fetch the BasicEditorPane instance from the context.
|
BasicEditorPane |
CodeEditor.getFocusedEditorPane()
Fetches the focused (active) editor pane embedded in the editor in which to perform Find operations on.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractEditingPlugin.characterTyped(BasicEditorPane editorPane, int offset, char typedChar)
Providers notification that a character was typed by the user and inserted into the editor pane.
|
void |
ZoomTextPlugin.deinstall(BasicEditorPane editor) |
void |
ScrollTipPlugin.deinstall(BasicEditorPane editor) |
void |
EditorStatusBar.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
DropHandlerPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
BreadcrumbsPlugin.deinstall(BasicEditorPane editor) |
void |
AbstractEditorHoverPlugin.deinstall(BasicEditorPane editor) |
void |
AbstractEditingPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
static CodeEditor |
CodeEditor.getCodeEditor(BasicEditorPane editor)
Fetch the Code Editor associated with the given editor component.
|
static Context |
CodeEditor.getContext(BasicEditorPane editor)
Fetch the IDE context associated with the given editor component.
|
protected abstract oracle.ide.hover.Hover |
AbstractEditorHoverPlugin.getHover(BasicEditorPane editor, java.util.List<oracle.ide.hover.HoverFlavor> flavors, int offset, java.awt.Rectangle rect)
Get the
Hover object if the installHoverableEditor(BasicEditorPane) is true, and getRectangleOffsets has returned a valid value. |
protected abstract NumberRange |
AbstractEditorHoverPlugin.getRectangleOffsets(BasicEditorPane editor, java.util.List<oracle.ide.hover.HoverFlavor> flavors, int offset)
Get the offsets in the code editor for which a rectangle needs to be shown, when a Ctrl is pressed during a mouse hover.
|
javax.swing.JComponent |
ScrollTipRenderer.getRenderer(BasicEditorPane editor, int startOffset, int endOffset) |
java.lang.String |
CodeEditor.getToolTipText(BasicEditorPane editorPane, java.awt.event.MouseEvent mouseEvent, int offset)
Requests from the editor client an appropriate tooltip to display for the given editor.
|
void |
EditorStatusBar.hideFeedback(BasicEditorPane editorPane)
Clears the text feedback message last displayed for the given editor pane.
|
void |
CodeEditor.hidePopup(BasicEditorPane editorPane)
Informs the editor client that the popup menu (if showing) should now be hidden.
|
void |
ZoomTextPlugin.install(BasicEditorPane editor) |
void |
ScrollTipPlugin.install(BasicEditorPane editor) |
void |
EditorStatusBar.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
DropHandlerPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
BreadcrumbsPlugin.install(BasicEditorPane editor) |
void |
AbstractEditorHoverPlugin.install(BasicEditorPane editor) |
void |
AbstractEditingPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
protected abstract boolean |
AbstractEditorHoverPlugin.installHoverableEditor(BasicEditorPane editor)
Check whether the code hover functionality should be added to the given editor.
|
void |
EditorStatusBar.showFeedback(BasicEditorPane editorPane, java.lang.String feedbackMessage)
Displays a text feedback message to the user associated with the given editor pane.
|
void |
EditorStatusBar.showFeedback(BasicEditorPane editorPane, java.lang.String feedbackMessage, int milliSeconds)
Displays a text feedback message to the user associated with the given editor pane.
|
void |
CodeEditor.showPopup(BasicEditorPane editorPane, java.awt.event.MouseEvent mouseEvent)
Informs the editor client that the user requested a popup menu in the given editor pane, at the location specified in the mouseEvent.
|
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
EditorPaneView.getCurrentEditorPane()
Get the current (focussed) editor pane, or null if no editor pane currently has focus.
|
BasicEditorPane[] |
EditorPaneView.getEditorPanes()
Get all editor panes in use by the view.
|
Modifier and Type | Method and Description |
---|---|
void |
InlineCodeHighlighter.deinstall(BasicEditorPane editor) |
void |
InlineCodeHighlighter.install(BasicEditorPane editor) |
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
WedgeCompareView.getCurrentEditorPane() |
protected BasicEditorPane |
WedgeCompareView.getEditorPane(ContributorKind contributor) |
BasicEditorPane[] |
WedgeCompareView.getEditorPanes() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
WedgeCompareView.getToolTipText(BasicEditorPane editorPane, java.awt.event.MouseEvent mouseEvent, int offset) |
void |
WedgeCompareView.removePopupManager(ComparePopupManager manager, BasicEditorPane editorPane) |
Modifier and Type | Method and Description |
---|---|
static void |
EditorPeekPopup.showPopup(java.lang.Object key, BasicEditorPane editorPane, java.lang.String[] text, java.awt.Rectangle sourceRect, int startLine, int endLine, int lineHeight, java.awt.Color[] backgroundColors, int fadeAmount, int minimumSize)
Show the pop up containing a snippet of code rendered directly from the editor If you have any effects on the editor that shouldn't show up in the snippet then remove them before calling this and then add them back directly afterwards.
|
static void |
EditorPeekPopup.showPopup(java.lang.Object key, BasicEditorPane editorPane, java.lang.String text, java.awt.Rectangle sourceRect, int startLine, int endLine, int lineHeight, java.awt.Color backgroundColor, int fadeAmount, int minimumSize)
Show the pop up containing a snippet of code rendered directly from the editor If you have any effects on the editor that shouldn't show up in the snippet then remove them before calling this and then add them back directly afterwards.
|
static void |
EditorPeekPopup.showPopup(java.lang.Object key, javax.swing.RootPaneContainer window, BasicEditorPane editorPane, java.lang.String[] text, java.awt.Rectangle sourceRect, int startLine, int endLine, int lineHeight, java.awt.Color[] backgroundColors, int fadeAmount, int minimumSize)
Show the pop up containing a snippet of code rendered directly from the editor If you have any effects on the editor that shouldn't show up in the snippet then remove them before calling this and then add them back directly afterwards.
|
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
RowMap.getEditorPane()
Fetches the underlying
BasicEditorPane that this row map applies to. |
BasicEditorPane |
BasicEditorPaneContainer.getFocusedEditorPane()
Fetches the focused (active) editor pane embedded in the editor.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
EmacsAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered in a
BasicEditorPane . |
void |
BasicEditorKit.CutAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.CopyAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.PasteAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ExtendedPasteAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.NOPAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.BlockIndentOutdentAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ConvertSelectionCaseAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DefaultKeyTypedAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.JoinLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DeleteLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DeleteNextCharAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DeletePrevCharAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DeleteUntilEOLAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DeleteNextWordAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.DeletePreviousWordAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.InsertBreakAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.InsertTabAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.OpenLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.NewLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ReverseTabAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.SortSelectedLines.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.TrimWhitespaceAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ToggleCommentsAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.TabifyAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.TransposeCharsAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.UntabifyAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.BeepAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.SetLocalTabSizeAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ReadOnlyAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.WritableAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ToggleInsertModeAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.MacroRecorderAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.GotoMatchingBraceAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigate operation to perform when this action is triggered.
|
void |
BasicEditorKit.NavigateAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.SelectWordAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.SelectLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.SelectAllAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.UnselectAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.RecenterLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ScrollLineUpAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ScrollLineDownAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.MoveUpAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.MoveDownAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ScrollPageUpAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.ScrollPageDownAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsSetMarkAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsExchangePointMarkAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsBeginAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsEndAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsMarkBufferAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsKillTypeAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsYankAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsCaseWordAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsCaseRegionAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
void |
BasicEditorKit.EmacsDeleteHorizontalSpaceAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered.
|
abstract void |
BasicAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The operation to perform when this action is triggered in a
BasicEditorPane . |
static void |
BasicAction.beep(BasicEditorPane editor)
Utility routine which just emits a beep.
|
boolean |
EditorSelectionWrap.canSupportEditor(BasicEditorPane editorPane)
Wrap selection is the 'standard' selection that editor panes support, so this method always returns true.
|
boolean |
EditorSelectionColumns.canSupportEditor(BasicEditorPane editorPane)
Column selection can only support editors containing fixed width fonts
|
boolean |
EditorSelection.canSupportEditor(BasicEditorPane editorPane)
Indicates whether the EditorSelection can support its selection type on te given editor pane
|
void |
CharacterTypedListener.characterTyped(BasicEditorPane editorPane, int offset, char typedChar)
Providers notification that a character was typed by the user and inserted into the editor pane.
|
void |
FileOverviewMargin.deinstall(BasicEditorPane editor)
Deprecated.
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
EmacsAction.Tracker.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.)
|
static FileOverviewMargin |
FileOverviewMargin.getFileOverviewMargin(BasicEditorPane editor)
Deprecated.
|
static int |
BasicAction.getFontHeight(BasicEditorPane editor)
Utility routine which fetches the height of the current font of the editor.
|
static int |
BasicAction.getIndentSizeProperty(BasicEditorPane editor)
Utility routine to fetch the indent size for the given editor.
|
BasicAction |
BasicAction.getLastAction(BasicEditorPane editor)
Utility routine which retrieves the last action executed (prior to the current one.) If there was no previous action, null is returned.
|
static java.awt.Point |
BasicAction.getMagicCaretPosition(BasicEditorPane editor)
Reads the magic caret position from the editor's caret, or if there is none, the current horizontal position of the cursor.
|
protected static int |
EmacsAction.getMark(BasicEditorPane editor)
Utility routine to fetch the Emacs mark set for the given editor.
|
static SmartIndentProvider |
BasicAction.getSmartIndentProvider(BasicEditorPane editor, BasicDocument document)
Fetch the SmartIndentProvider for the current document.
|
static int |
BasicAction.getTabSizeProperty(BasicEditorPane editor)
Utility routine to fetch the tab stop size for the given editor.
|
java.lang.String |
ToolTipProvider.getToolTipText(BasicEditorPane editorPane, java.awt.event.MouseEvent mouseEvent, int offset)
Requests from the editor client an appropriate tooltip to display for the given editor.
|
static boolean |
BasicAction.getUseAutoIndentProperty(BasicEditorPane editor)
Utility routine to fetch whether auto-indentation should be done for the given editor.
|
static boolean |
BasicAction.getUseTabsProperty(BasicEditorPane editor)
Utility routine to fetch whether a tab character should be used for the given editor.
|
static java.awt.Rectangle |
BasicAction.getVisibleRect(BasicEditorPane editor)
Utility routine to fetch the current visible rectangle of the editor.
|
void |
FeedbackManager.hideFeedback(BasicEditorPane editorPane)
Clears the text feedback message last displayed for the given editor pane.
|
void |
PopupManager.hidePopup(BasicEditorPane editorPane)
Informs the editor client that the popup menu (if showing) should now be hidden.
|
void |
FileOverviewMargin.install(BasicEditorPane basicEditorPane)
Deprecated.
Called when this plugin is being installed into the BasicEditorPane.
|
void |
EmacsAction.Tracker.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
EditorSelectionWrap.install(BasicEditorPane editor) |
void |
EditorSelectionColumns.install(BasicEditorPane editor) |
void |
EditorSelection.install(BasicEditorPane editor)
Associate the editor selection with an editor
|
static boolean |
BasicAction.isEditable(BasicEditorPane editor, boolean beepIfNotEditable)
Utility routine which checks if the editor is editable, and beeps if it isn't (if requested.)
|
static boolean |
EditorSelectionColumns.isEditorFixedWidthFont(BasicEditorPane editorPane) |
protected abstract boolean |
BasicEditorKit.EmacsKillTypeAction.killPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document, boolean lastActionWasKill)
The kill operation to perform when this action is triggered.
|
protected boolean |
BasicEditorKit.EmacsKillWordAction.killPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document, boolean lastActionWasKill)
The kill operation to perform when this action is triggered.
|
protected boolean |
BasicEditorKit.EmacsBackwardKillWordAction.killPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document, boolean lastActionWasKill)
The kill operation to perform when this action is triggered.
|
protected boolean |
BasicEditorKit.EmacsKillLineAction.killPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document, boolean lastActionWasKill)
The kill operation to perform when this action is triggered.
|
protected boolean |
BasicEditorKit.EmacsKillRegionAction.killPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document, boolean lastActionWasKill)
The kill operation to perform when this action is triggered.
|
protected boolean |
BasicEditorKit.EmacsAppendNextKillAction.killPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document, boolean lastActionWasKill)
The kill operation to perform when this action is triggered.
|
protected boolean |
EmacsAction.Tracker.matchesEditor(BasicEditorPane editor, int offset)
Returns whether the passed in editor and offset matches the editor and offset we are tracking
|
void |
NavigationListener.navigated(BasicEditorPane editor, int offset) |
protected abstract void |
BasicEditorKit.NavigateAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigate operation to perform when this action is triggered.
|
protected void |
BasicEditorKit.PageUpAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.PageDownAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.ForwardAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.BackwardAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.UpAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.DownAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.BeginWordAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.EndWordAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.PreviousWordAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.NextWordAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.BeginLineAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.EndLineAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.BeginAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
protected void |
BasicEditorKit.EndAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
The navigation to perform when this action is triggered.
|
void |
BasicEditorPainter.paint(java.awt.Graphics g, BasicEditorPane editor)
Perform custom painting into an editor
|
protected static void |
EmacsAction.removeMark(BasicEditorPane editor)
Utility routine to remove the Emacs mark from a given editor (i.e., when it is being closed.
|
static void |
BasicAction.setMagicCaretPosition(BasicEditorPane editor, java.awt.Point magicPosition)
Stores the magic caret position into the editor's caret.
|
protected static void |
EmacsAction.setMark(BasicEditorPane editor, int offset)
Utility routine to set the Emacs mark for the given editor to the specified offset.
|
protected boolean |
BasicEditorKit.BlockIndentOutdentAction.shouldPerformBlockOperation(BasicEditorPane editor)
Utility routine to check whether we should perform a block indent or outdent - this is called from InsertTabAction and ReverseTabAction to check if there is a selection and if the global property for performing block indents/outdents is on.
|
protected static void |
EmacsAction.showEndBufferMessage(BasicEditorPane editor)
Utility routine to show the message that we are at the end of the buffer
|
void |
FeedbackManager.showFeedback(BasicEditorPane editorPane, java.lang.String feedbackMessage)
Displays a text feedback message to the user associated with the given editor pane.
|
void |
FeedbackManager.showFeedback(BasicEditorPane editorPane, java.lang.String feedbackMessage, int milliSeconds)
Displays a text feedback message to the user associated with the given editor pane.
|
protected static void |
EmacsAction.showMarkNotSetMessage(BasicEditorPane editor)
Utility routine to show the message that the mark has not yet been set.
|
protected static void |
EmacsAction.showMarkSetMessage(BasicEditorPane editor)
Utility routine to show the message that the mark has been set.
|
static void |
BasicAction.showMessage(BasicEditorPane editor, java.lang.String message)
Utility routine to show a feedback message in the editor.
|
protected static void |
EmacsAction.showNextKillAppendMessage(BasicEditorPane editor)
Utility routine to show the message that if the next command is a kill, it will append
|
void |
PopupManager.showPopup(BasicEditorPane editorPane, java.awt.event.MouseEvent mouseEvent)
Informs the editor client that the user requested a popup menu in the given editor pane, at the location specified in the mouseEvent.
|
protected static void |
EmacsAction.showPreviousNotYankMessage(BasicEditorPane editor)
Utility routine to show the message that the previous command was not a yank.
|
protected static void |
EmacsAction.showReadOnlyMessage(BasicEditorPane editor)
Utility routine to show the message that the buffer is read-only.
|
protected void |
EmacsAction.Tracker.trackEditor(BasicEditorPane editor)
Utility routine to start tracking the current editor so that we can detect consecutive kills.
|
Constructor and Description |
---|
BasicEditorOverview(BasicEditorPane editor)
Create an Overview for the given editor.
|
BasicEditorOverview(BasicEditorPane editor, boolean isDefaultOverviewForEditor)
Create an Overview for the given editor.
|
BasicEditorOverviewLabelMark(BasicEditorPane editor, java.lang.Integer startOffset, java.lang.Integer endOffset, float priority, java.awt.Color color)
Create an overview mark.
|
BasicEditorOverviewLabelMark(BasicEditorPane editor, java.lang.Integer startOffset, java.lang.Integer endOffset, float priority, java.awt.Color color, boolean isStationary)
Create an overview mark.
|
BasicEditorOverviewMark(BasicEditorPane editor, java.lang.Integer startOffset, java.lang.Integer endOffset, float priority, java.awt.Color color)
Create an overview mark.
|
BasicEditorOverviewMark(BasicEditorPane editor, java.lang.Integer startOffset, java.lang.Integer endOffset, float priority, java.awt.Color color, boolean isStationary)
Create an overview mark.
|
TextTabber(BasicEditorPane editor)
Create a TextTabber for the specified editor
|
Modifier and Type | Field and Description |
---|---|
protected BasicEditorPane |
CodeFoldingMargin.editorPane |
Modifier and Type | Method and Description |
---|---|
protected BasicEditorPane |
CodeFoldingMargin.getEditorPane() |
BasicEditorPane |
CodeExpansionEvent.getEditorPane() |
Modifier and Type | Method and Description |
---|---|
protected void |
CodeFoldingMargin.attach(BasicEditorPane editorPane) |
protected void |
AbstractCodeFoldingPlugin.attach(BasicEditorPane editorPane) |
protected CodeFoldingModel |
CodeFoldingMargin.createCodeFoldingModel(BasicEditorPane editorPane) |
CodeFoldingModel<B> |
CodeFoldingProvider.createModel(BasicEditorPane editorPane)
Creates a new data model describing the collapsible source code blocks in the document attached to the specified editor component.
|
protected void |
AbstractCodeFoldingPlugin.deinstallImpl(BasicEditorPane editorPane) |
protected void |
CodeFoldingMargin.detach(BasicEditorPane editorPane) |
protected void |
AbstractCodeFoldingPlugin.detach(BasicEditorPane editorPane) |
static void |
FoldingFader.fadeBlock(CodeFoldingModel model, java.lang.Object block, int[] offsets, BasicEditorPane editorPane)
Trigger the fading of a code block.
|
protected void |
AbstractCodeFoldingPlugin.installImpl(BasicEditorPane editorPane) |
Constructor and Description |
---|
CodeExpansionEvent(BasicEditorPane editorPane, java.lang.Object block) |
CodeExpansionEvent(BasicEditorPane editorPane, java.lang.Object block, CodeExpansionEvent.Type type) |
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
LineGutterPlugin.getEditor() |
Modifier and Type | Method and Description |
---|---|
void |
LineGutterPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
LineGutterPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
HighlightLayer.getEditor() |
Constructor and Description |
---|
HighlightLayer(BasicEditorPane editor)
Constructs a new highlight layer associated with the given editor.
|
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
AbstractInsight.getEditorPane()
Fetches the editor pane that this Insight instance is installed in.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractInsight.characterTyped(BasicEditorPane editorPane, int offset, char typedChar)
Providers notification that a character was typed by the user and inserted into the editor pane.
|
void |
AbstractInsight.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
InsightData |
InsightProvider.getInsightData(BasicEditorPane editorPane)
Performs a search for insight information using the document and caret position in the given editor pane.
|
InsightData |
SmartInsightProvider.getInsightData(BasicEditorPane editorPane, boolean isSmart)
Performs a search for insight information using the document and caret position in the given editor pane.
|
protected boolean |
AbstractInsight.handleCancelCommand(BasicEditorPane editor)
The default action executed for the cancel command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handleCompleteCommand(BasicEditorPane editor)
The default action executed when the user selected a choice from the insight list view (the complete command).
|
protected boolean |
AbstractInsight.handleDownCommand(BasicEditorPane editor)
The default action executed for the down arrow command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handleEndCommand(BasicEditorPane editor)
The default action executed for the end command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handleHomeCommand(BasicEditorPane editor)
The default action executed for the home command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handleInsightCommand(BasicEditorPane editor)
The default action executed for the insight command.
|
protected boolean |
AbstractInsight.handleLeftCommand(BasicEditorPane editor)
The default action executed for the left arrow command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handlePageDownCommand(BasicEditorPane editor)
The default action executed for the page down command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handlePageUpCommand(BasicEditorPane editor)
The default action executed for the page up command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handleRightCommand(BasicEditorPane editor)
The default action executed for the right arrow command Derived classes can implement their own complete action.
|
protected boolean |
AbstractInsight.handleUpCommand(BasicEditorPane editor)
The default action executed for the up arrow command Derived classes can implement their own complete action.
|
void |
AbstractInsight.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
InsightData |
InsightProvider.updateInsightData(BasicEditorPane editorPane, InsightData lastData)
Requests an update of Insight information following a document or caret change in the editor.
|
InsightData |
SmartInsightProvider.updateInsightData(BasicEditorPane editorPane, InsightData lastData, boolean isSmart)
Requests an update of Insight information following a document or caret change in the editor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
SmartIndentProvider.isSmartIndentEnabled(BasicEditorPane editor)
Fetches whether smart indentation is enabled for this language implementation's smart indent provider.
|
Modifier and Type | Field and Description |
---|---|
protected BasicEditorPane |
AbstractFoldingMargin._editor
The current installed editor (if any).
|
protected BasicEditorPane |
AbstractEditorPlugin._editor
The current installed editor (if any).
|
protected BasicEditorPane |
DropTargetPlugin.editor
The editor that this plugin is installed into.
|
Modifier and Type | Method and Description |
---|---|
protected BasicEditorPane |
AbstractFoldingMargin.getEditorPane()
Fetch the current installed editor pane.
|
protected BasicEditorPane |
TrailingSpacePlugin.getEditorPane()
Fetch the
BasicEditorPane associated with this plugin, or null if this plugin is not currently installed. |
protected BasicEditorPane |
DragDropPlugin.DragTransferable.getEditorPane()
Fetch the editor pane that initiated the drag operation.
|
protected BasicEditorPane |
AbstractEditorPlugin.getEditorPane()
Fetch the current installed editor pane.
|
protected BasicEditorPane |
AbstractClickPlugin.getEditorPane()
Fetch the
BasicEditorPane associated with this plugin, or null if this plugin is not currently installed. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractFoldingMargin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
TrailingSpacePlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
StatusBarPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
LineHighlightPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
GuardedHighlightPlugin.deinstall(BasicEditorPane editor) |
void |
FindHighlightPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
EditorPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
DropTargetPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
DragDropPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
BraceMatchingPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
AbstractEditorPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
AbstractClickPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
protected void |
AbstractFoldingMargin.deinstallImpl(BasicEditorPane editor)
Deinstall routine for subclasses that have added deinstallation code to execute.
|
protected void |
AbstractEditorPlugin.deinstallImpl(BasicEditorPane editor)
Deinstall routine for subclasses that have added deinstallation code to execute.
|
void |
StatusBarPlugin.hideFeedback(BasicEditorPane editorPane)
Clears the text feedback message last displayed for the given editor pane.
|
void |
AbstractFoldingMargin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
TrailingSpacePlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
StatusBarPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
LineHighlightPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
GuardedHighlightPlugin.install(BasicEditorPane editor) |
void |
FindHighlightPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
EditorPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
DropTargetPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
DragDropPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
BraceMatchingPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
AbstractEditorPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
AbstractClickPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
protected void |
AbstractFoldingMargin.installImpl(BasicEditorPane editor)
Install routine for subclasses that have added installation code to execute.
|
protected void |
AbstractEditorPlugin.installImpl(BasicEditorPane editor)
Install routine for subclasses that have added installation code to execute.
|
void |
StatusBarPlugin.showFeedback(BasicEditorPane editorPane, java.lang.String feedbackMessage)
Displays a text feedback message to the user associated with the given editor pane.
|
void |
StatusBarPlugin.showFeedback(BasicEditorPane editorPane, java.lang.String feedbackMessage, int milliSeconds)
Displays a text feedback message to the user associated with the given editor pane.
|
Modifier and Type | Method and Description |
---|---|
protected BasicEditorPane |
PopupWindowManager.getEditorPane()
Fetch the editor pane this popup window manager is associated w/.
|
Modifier and Type | Method and Description |
---|---|
static void |
HtmlPopup.cancelPopup(BasicEditorPane editor) |
void |
PopupWindowManager.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
void |
HtmlPopup.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) This is used to notify plugins that they should unregister any listeners that were attached.
|
static PopupWindowManager |
PopupWindowManager.getPopupWindowManager(BasicEditorPane editor)
Fetch the
PopupWindowManager to use for the given editor pane. |
void |
PopupWindowManager.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
void |
HtmlPopup.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane.
|
static HtmlPopupView |
HtmlPopup.invokePopup(BasicEditorPane editor, HtmlContentProvider contentProvider)
Shows the
contentProvider 's HTML in a popup over the editor with a default set of Options. |
static HtmlPopupView |
HtmlPopup.invokePopup(BasicEditorPane editor, HtmlContentProvider contentProvider, java.util.EnumSet<HtmlPopup.Options> options)
Shows the
contentProvider 's HTML in a popup over the editor |
Modifier and Type | Method and Description |
---|---|
BasicEditorPane |
BaseMergeEditor.getFocusedEditorPane()
Fetches the focused (active) editor pane embedded in the editor.
|