|
Extension SDK 10.1.3.36.73 | ||||||||||
| 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.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.el.insight | |
| 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 |
| Methods in oracle.ide.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.ide.ceditor with parameters of type BasicEditorPane | |
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.) |
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 |
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.) |
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. |
void |
CodeEditor.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. |
static CodeEditor |
CodeEditor.getCodeEditor(BasicEditorPane editor)
Fetch the Code Editor 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. |
| 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. |
BasicEditorPane |
BasicView.LineRowMap.getEditorPane()
Fetches the underlying BasicEditorPane that this row map
applies to. |
| Methods in oracle.javatools.editor with parameters of type BasicEditorPane | |
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. |
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. |
static FileOverviewMargin |
FileOverviewMargin.getFileOverviewMargin(BasicEditorPane editor)
|
void |
FileOverviewMargin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane. |
void |
FileOverviewMargin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) |
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. |
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. |
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.) |
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.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. |
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.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.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.TabifyAction.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.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. |
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 |
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. |
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. |
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. |
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. |
BasicAction |
BasicAction.getLastAction(BasicEditorPane editor)
Utility routine which retrieves the last action executed (prior to the current one.) |
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.getIndentSizeProperty(BasicEditorPane editor)
Utility routine to fetch the indent size for the given 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. |
| 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 | |
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 |
CodeFoldingMargin.attach(BasicEditorPane editorPane)
|
protected void |
CodeFoldingMargin.detach(BasicEditorPane editorPane)
|
protected CodeFoldingModel |
CodeFoldingMargin.createCodeFoldingModel(BasicEditorPane editorPane)
|
protected void |
AbstractCodeFoldingPlugin.installImpl(BasicEditorPane editorPane)
|
protected void |
AbstractCodeFoldingPlugin.deinstallImpl(BasicEditorPane editorPane)
|
protected void |
AbstractCodeFoldingPlugin.attach(BasicEditorPane editorPane)
|
protected void |
AbstractCodeFoldingPlugin.detach(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 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.) |
| 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 |
SmartInsightProvider.getInsightData(BasicEditorPane editorPane,
boolean isSmart)
Performs a search for insight information using the document and caret position in the given editor pane. |
InsightData |
SmartInsightProvider.updateInsightData(BasicEditorPane editorPane,
InsightData lastData,
boolean isSmart)
Requests an update of Insight information following a document or caret change in the editor. |
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.) |
| 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. |
protected BasicEditorPane |
AbstractEditorPlugin._editor
The current installed editor (if any). |
| Methods in oracle.javatools.editor.plugins that return BasicEditorPane | |
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. |
| Methods in oracle.javatools.editor.plugins with parameters of type BasicEditorPane | |
void |
TrailingSpacePlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane. |
void |
TrailingSpacePlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) |
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.) |
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. |
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.) |
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.) |
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.) |
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.) |
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.) |
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.) |
void |
AbstractEditorPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane. |
void |
AbstractEditorPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) |
protected void |
AbstractEditorPlugin.installImpl(BasicEditorPane editor)
Install routine for subclasses that have added installation code to execute. |
protected void |
AbstractEditorPlugin.deinstallImpl(BasicEditorPane editor)
Deinstall routine for subclasses that have added deinstallation code to execute. |
void |
AbstractClickPlugin.install(BasicEditorPane editor)
Called when this plugin is being installed into the BasicEditorPane. |
void |
AbstractClickPlugin.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) |
| 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 | |
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 |
PopupWindowManager.deinstall(BasicEditorPane editor)
Called when the plugin is being removed from the BasicEditorPane (for example when the editor is closed.) |
| Uses of BasicEditorPane in oracle.jdeveloper.el.insight |
| Methods in oracle.jdeveloper.el.insight with parameters of type BasicEditorPane | |
protected InsightData |
ELCompletionInsightProvider.getInsightDataImpl(BasicEditorPane editorPane,
oracle.bali.xml.editor.insight.parser.InsightLocation insightLocation,
int contextType)
|
protected InsightData |
ELCompletionInsightProvider.updateInsightDataImpl(BasicEditorPane editorPane,
InsightData lastData,
oracle.bali.xml.editor.insight.parser.InsightLocation insightLocation,
int contextType)
|
| Uses of BasicEditorPane in oracle.jdeveloper.merge |
| Methods in oracle.jdeveloper.merge that return BasicEditorPane | |
BasicEditorPane |
AbstractMergeEditor.getFocusedEditorPane()
|
| Methods in oracle.jdeveloper.merge with parameters of type BasicEditorPane | |
void |
AbstractMergeEditor.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. The client is responsible for building/populating the popup menus (if necessary), and making it visible. |
void |
AbstractMergeEditor.hidePopup(BasicEditorPane editorPane)
Informs the editor client that the popup menu (if showing) should now be hidden. This may be in response to some user input or event. |
|
Extension SDK 10.1.3.36.73 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright © 1997, 2005, Oracle.All rights reserved.