Extension SDK 10.1.2

Uses of Class
oracle.javatools.editor.BasicEditorPane

Packages that use BasicEditorPane
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.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 colored background 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.underline The Underline package is a subset of the Editor package, and contains API's for creating, mainting, and applying underlines to regions of text in the editor pane. 
oracle.jdeveloper.ceditor The Code Editor package contains the code editing implementation of the JDeveloper IDE. 
 

Uses of BasicEditorPane in oracle.javatools.editor
 

Methods in oracle.javatools.editor with parameters of type BasicEditorPane
 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 BasicEditorKit.EmacsDeleteHorizontalSpaceAction.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.EmacsCaseWordAction.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.
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 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.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.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 EmacsAction.Tracker.matchesEditor(BasicEditorPane editor, int offset)
          Returns whether the passed in editor and offset matches the editor and offset we are tracking
protected  void EmacsAction.Tracker.trackEditor(BasicEditorPane editor)
          Utility routine to start tracking the current editor so that we can detect consecutive kills.
 void EmacsAction.Tracker.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 void EmacsAction.Tracker.deinstall(BasicEditorPane editor)
          Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.)
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.
 void BasicEditorKit.EmacsKillTypeAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
          The 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.
 void BasicEditorKit.EmacsMarkBufferAction.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.EmacsBeginAction.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.
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.
protected static int EmacsAction.getMark(BasicEditorPane editor)
          Utility routine to fetch the Emacs mark set for the given editor.
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 static void EmacsAction.removeMark(BasicEditorPane editor)
          Utility routine to remove the Emacs mark from a given editor (i.e., when it is being closed.
protected static void EmacsAction.showMarkSetMessage(BasicEditorPane editor)
          Utility routine to show the message that the mark has been set.
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.showEndBufferMessage(BasicEditorPane editor)
          Utility routine to show the message that we are at the end of the buffer
protected static void EmacsAction.showReadOnlyMessage(BasicEditorPane editor)
          Utility routine to show the message that the buffer is read-only.
protected static void EmacsAction.showNextKillAppendMessage(BasicEditorPane editor)
          Utility routine to show the message that if the next command is a kill, it will append
protected static void EmacsAction.showPreviousNotYankMessage(BasicEditorPane editor)
          Utility routine to show the message that the previous command was not a yank.
 void BasicEditorKit.EmacsSetMarkAction.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.ScrollPageUpAction.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.ScrollLineUpAction.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.UnselectAction.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.SelectLineAction.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.
protected  void BasicEditorKit.EndAction.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.EndLineAction.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.NextWordAction.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.EndWordAction.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.DownAction.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.BackwardAction.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.PageDownAction.navigatePerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
          The navigation 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.
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.
 void BasicEditorKit.GotoMatchingBraceAction.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.ToggleInsertModeAction.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.ReadOnlyAction.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.BeepAction.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.TransposeCharsAction.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.SortSelectedLines.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.OpenLineAction.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.InsertBreakAction.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.DeleteNextWordAction.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.DeletePrevCharAction.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.DeleteLineAction.actionPerformed(java.awt.event.ActionEvent event, BasicEditorPane editor, BasicDocument document)
          The operation to perform when this action is triggered.
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.
 void BasicEditorKit.BlockIndentOutdentAction.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.PasteAction.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.CutAction.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.
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.
 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.
static void BasicAction.setMagicCaretPosition(BasicEditorPane editor, java.awt.Point magicPosition)
          Stores the magic caret position into the editor's caret.
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 void BasicAction.beep(BasicEditorPane editor)
          Utility routine which just emits a beep.
static int BasicAction.getFontHeight(BasicEditorPane editor)
          Utility routine which fetches the height of the current font of the editor.
static java.awt.Rectangle BasicAction.getVisibleRect(BasicEditorPane editor)
          Utility routine to fetch the current visible rectangle of the editor.
static void BasicAction.showMessage(BasicEditorPane editor, java.lang.String message)
          Utility routine to show a feedback message in the editor.
static int BasicAction.getTabSizeProperty(BasicEditorPane editor)
          Utility routine to fetch the tab stop size 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 SmartIndentProvider BasicAction.getSmartIndentProvider(BasicEditorPane editor, BasicDocument document)
          Fetch the SmartIndentProvider for the current document.
static boolean BasicAction.getUseTabsProperty(BasicEditorPane editor)
          Utility routine to fetch whether a tab character should be used for the given editor.
 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.
 void PopupManager.hidePopup(BasicEditorPane editorPane)
          Informs the editor client that the popup menu (if showing) should now be hidden.
 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.
 void FeedbackManager.hideFeedback(BasicEditorPane editorPane)
          Clears the text feedback message last displayed for the given editor pane.
 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.
 

Uses of BasicEditorPane in oracle.javatools.editor.gutter
 

Methods in oracle.javatools.editor.gutter with parameters of type BasicEditorPane
 void LineGutterPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the 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.
 

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
 InsightData InsightProvider.getInsightData(BasicEditorPane editorPane)
          Performs a search for insight information using the document and caret position in the given editor pane.
 InsightData InsightProvider.updateInsightData(BasicEditorPane editorPane, InsightData lastData)
          Requests an update of Insight information following a document or caret change in the editor.
 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.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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.
 

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 DropTargetPlugin.editor
          The editor that this plugin is installed into.
 

Methods in oracle.javatools.editor.plugins that return BasicEditorPane
protected  BasicEditorPane DragDropPlugin.DragTransferable.getEditorPane()
          Fetch the editor pane that initiated the drag operation.
 

Methods in oracle.javatools.editor.plugins with parameters of type BasicEditorPane
 void DropTargetPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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 FindHighlightPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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 BraceMatchingPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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 EditorPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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 StatusBarPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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 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.
 void StatusBarPlugin.hideFeedback(BasicEditorPane editorPane)
          Clears the text feedback message last displayed for the given editor pane.
 

Uses of BasicEditorPane in oracle.javatools.editor.underline
 

Constructors in oracle.javatools.editor.underline with parameters of type BasicEditorPane
UnderlineLayer(BasicEditorPane editor)
          Constructs a new underline layer associated with the given editor.
 

Uses of BasicEditorPane in oracle.jdeveloper.ceditor
 

Methods in oracle.jdeveloper.ceditor that return BasicEditorPane
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.
protected  BasicEditorPane CodeEditor.getEditorComponent()
          Primarily for the controller to use to get access to the component to do cut/copy/paste
 

Methods in oracle.jdeveloper.ceditor with parameters of type BasicEditorPane
 void DropHandlerPlugin.install(BasicEditorPane editor)
          Called when this plugin is being installed into the BasicEditorPane.
 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 EditorStatusBar.install(BasicEditorPane editor)
          Called when this plugin is being installed into the 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 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 EditorStatusBar.hideFeedback(BasicEditorPane editorPane)
          Clears the text feedback message last displayed for the given editor pane.
 void CodeEditorController.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.
 void CodeEditorController.hidePopup(BasicEditorPane editorPane)
          Informs the editor client that the popup menu (if showing) should now be hidden.
static Context CodeEditor.getContext(BasicEditorPane editor)
          Fetch the IDE context associated with the given editor component.
 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.
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.