|
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.7.2) E13403-10 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BasicEditorPane | |
---|---|
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.java.browse | |
oracle.jdeveloper.java.editing | |
oracle.jdeveloper.merge | Contains classes for merge editor abstractions, including an editor addin, commands, a controller, and utilities. |
Uses of BasicEditorPane in oracle.ide.ceditor |
---|
Fields in oracle.ide.ceditor declared as BasicEditorPane | |
---|---|
protected BasicEditorPane |
BreadcrumbsPlugin.editor |
Methods in oracle.ide.ceditor that return BasicEditorPane | |
---|---|
protected BasicEditorPane |
CodeEditor.getEditorComponent() Primarily for the controller to use to get access to the component to do cut/copy/paste |
protected BasicEditorPane |
DropHandlerPlugin.getEditorPane() Fetch the editor. |
BasicEditorPane |
CodeEditor.getFocusedEditorPane() Fetches the focused (active) editor pane embedded in the editor in which to perform Find operations on. |
Methods in oracle.ide.ceditor with parameters of type BasicEditorPane | |
---|---|
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 |
ScrollTipPlugin.deinstall(BasicEditorPane editor) |
void |
BreadcrumbsPlugin.deinstall(BasicEditorPane editor) |
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 |
AbstractEditorHoverPlugin.deinstall(BasicEditorPane editor) |
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, 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 |
EditorStatusBar.install(BasicEditorPane editor) Called when this plugin is being installed into the BasicEditorPane. |
void |
ScrollTipPlugin.install(BasicEditorPane editor) |
void |
BreadcrumbsPlugin.install(BasicEditorPane editor) |
void |
DropHandlerPlugin.install(BasicEditorPane editor) Called when this plugin is being installed into the BasicEditorPane. |
void |
AbstractEditorHoverPlugin.install(BasicEditorPane editor) |
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. |
Uses of BasicEditorPane in oracle.javatools.compare.view |
---|
Methods in oracle.javatools.compare.view that return BasicEditorPane | |
---|---|
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. |
Uses of BasicEditorPane in oracle.javatools.compare.view.wedge |
---|
Methods in oracle.javatools.compare.view.wedge that return BasicEditorPane | |
---|---|
BasicEditorPane |
WedgeCompareView.getCurrentEditorPane() |
protected BasicEditorPane |
WedgeCompareView.getEditorPane(ContributorKind contributor) |
BasicEditorPane[] |
WedgeCompareView.getEditorPanes() |
Methods in oracle.javatools.compare.view.wedge with parameters of type BasicEditorPane | |
---|---|
java.lang.String |
WedgeCompareView.getToolTipText(BasicEditorPane editorPane, java.awt.event.MouseEvent mouseEvent, int offset) |
void |
WedgeCompareView.removePopupManager(ComparePopupManager manager, BasicEditorPane editorPane) |
Uses of BasicEditorPane in oracle.javatools.controls |
---|
Methods in oracle.javatools.controls with parameters of type BasicEditorPane | |
---|---|
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, java.awt.Window 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. |
Uses of BasicEditorPane in oracle.javatools.editor |
---|
Methods in oracle.javatools.editor that return BasicEditorPane | |
---|---|
BasicEditorPane |
RowMap.getEditorPane() Fetches the underlying BasicEditorPane that this row map applies to. |
Methods in oracle.javatools.editor with parameters of type BasicEditorPane | |
---|---|
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.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.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 |
EditorSelection.canSupportEditor(BasicEditorPane editorPane) Indicates whether the EditorSelection can support its selection type on te given editor pane |
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 |
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) 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) |
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 |
EditorSelection.install(BasicEditorPane editor) Associate the editor selection with an editor |
void |
FileOverviewMargin.install(BasicEditorPane basicEditorPane) 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) |
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) |
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. |
Constructors in oracle.javatools.editor with parameters of type BasicEditorPane | |
---|---|
TextTabber(BasicEditorPane editor) Create a TextTabber for the specified editor |
Uses of BasicEditorPane in oracle.javatools.editor.folding |
---|
Fields in oracle.javatools.editor.folding declared as BasicEditorPane | |
---|---|
protected BasicEditorPane |
CodeFoldingMargin.editorPane |
Methods in oracle.javatools.editor.folding that return BasicEditorPane | |
---|---|
protected BasicEditorPane |
CodeFoldingMargin.getEditorPane() |
BasicEditorPane |
CodeExpansionEvent.getEditorPane() |
Methods in oracle.javatools.editor.folding with parameters of type BasicEditorPane | |
---|---|
protected void |
AbstractCodeFoldingPlugin.attach(BasicEditorPane editorPane) |
protected void |
CodeFoldingMargin.attach(BasicEditorPane editorPane) |
protected CodeFoldingModel |
CodeFoldingMargin.createCodeFoldingModel(BasicEditorPane editorPane) |
CodeFoldingModel |
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 |
AbstractCodeFoldingPlugin.detach(BasicEditorPane editorPane) |
protected void |
CodeFoldingMargin.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) |
Constructors in oracle.javatools.editor.folding with parameters of type BasicEditorPane | |
---|---|
CodeExpansionEvent(BasicEditorPane editorPane, java.lang.Object block) |
Uses of BasicEditorPane in oracle.javatools.editor.gutter |
---|
Methods in oracle.javatools.editor.gutter that return BasicEditorPane | |
---|---|
BasicEditorPane |
LineGutterPlugin.getEditor() |
Methods in oracle.javatools.editor.gutter with parameters of type BasicEditorPane | |
---|---|
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. |
Uses of BasicEditorPane in oracle.javatools.editor.highlight |
---|
Constructors in oracle.javatools.editor.highlight with parameters of type BasicEditorPane | |
---|---|
HighlightLayer(BasicEditorPane editor) Constructs a new highlight layer associated with the given editor. |
Uses of BasicEditorPane in oracle.javatools.editor.insight |
---|
Methods in oracle.javatools.editor.insight that return BasicEditorPane | |
---|---|
BasicEditorPane |
AbstractInsight.getEditorPane() Fetches the editor pane that this Insight instance is installed in. |
Methods in oracle.javatools.editor.insight with parameters of type BasicEditorPane | |
---|---|
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. |
Uses of BasicEditorPane in oracle.javatools.editor.language |
---|
Methods in oracle.javatools.editor.language with parameters of type BasicEditorPane | |
---|---|
boolean |
SmartIndentProvider.isSmartIndentEnabled(BasicEditorPane editor) Fetches whether smart indentation is enabled for this language implementation's smart indent provider. |
Uses of BasicEditorPane in oracle.javatools.editor.plugins |
---|
Fields in oracle.javatools.editor.plugins declared as BasicEditorPane | |
---|---|
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. |
Methods in oracle.javatools.editor.plugins that return BasicEditorPane | |
---|---|
protected BasicEditorPane |
AbstractFoldingMargin.getEditorPane() Fetch the current installed editor pane. |
protected BasicEditorPane |
DragDropPlugin.DragTransferable.getEditorPane() Fetch the editor pane that initiated the drag operation. |
protected BasicEditorPane |
AbstractClickPlugin.getEditorPane() Fetch the BasicEditorPane associated with this plugin, or null if this plugin is not currently installed. |
protected BasicEditorPane |
AbstractEditorPlugin.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. |
Methods in oracle.javatools.editor.plugins with parameters of type BasicEditorPane | |
---|---|
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 |
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 |
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 |
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 |
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. |
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 |
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 |
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 |
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 |
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. |
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 |
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 |
LineHighlightPlugin.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 |
AbstractClickPlugin.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 |
AbstractEditorPlugin.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 |
TrailingSpacePlugin.install(BasicEditorPane editor) Called when this plugin is being installed into the BasicEditorPane. |
void |
FindHighlightPlugin.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. |
Uses of BasicEditorPane in oracle.javatools.editor.popup |
---|
Methods in oracle.javatools.editor.popup that return BasicEditorPane | |
---|---|
protected BasicEditorPane |
PopupWindowManager.getEditorPane() Fetch the editor pane this popup window manager is associated w/. |
Methods in oracle.javatools.editor.popup with parameters of type BasicEditorPane | |
---|---|
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. |
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. |
Uses of BasicEditorPane in oracle.jdeveloper.java.browse |
---|
Methods in oracle.jdeveloper.java.browse with parameters of type BasicEditorPane | |
---|---|
void |
AbstractEditorPeekPlugin.deinstall(BasicEditorPane editor) Deprecated. |
protected abstract oracle.ide.peek.Peek |
AbstractEditorPeekPlugin.getPeek(BasicEditorPane editor, int offset, java.awt.Rectangle rect) Deprecated. Get the Peek object if the installPeekableEditor(BasicEditorPane) is true, and getRectangleOffsets has returned a valid value. |
protected abstract NumberRange |
AbstractEditorPeekPlugin.getRectangleOffsets(BasicEditorPane editor, int offset) Deprecated. Get the offsets in the code editor for which a rectangle needs to be shown, when a Ctrl is pressed during a mouse hover. |
void |
AbstractEditorPeekPlugin.install(BasicEditorPane editor) Deprecated. |
protected abstract boolean |
AbstractEditorPeekPlugin.installPeekableEditor(BasicEditorPane editor) Deprecated. Check whether the code peek functionality should be added to the given editor. |
Uses of BasicEditorPane in oracle.jdeveloper.java.editing |
---|
Methods in oracle.jdeveloper.java.editing that return BasicEditorPane | |
---|---|
protected BasicEditorPane |
AbstractEditingPlugin.getEditorPane() |
Methods in oracle.jdeveloper.java.editing with parameters of type BasicEditorPane | |
---|---|
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 |
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. |
void |
AbstractEditingPlugin.install(BasicEditorPane editor) Called when this plugin is being installed into the BasicEditorPane. |
Uses of BasicEditorPane in oracle.jdeveloper.merge |
---|
Methods in oracle.jdeveloper.merge that return BasicEditorPane | |
---|---|
BasicEditorPane |
AbstractMergeEditor.getFocusedEditorPane() |
|
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.7.2) E13403-10 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |