| java.lang.Object bluej.editor.EditorManager bluej.editor.moe.MoeEditorManager
MoeEditorManager | public MoeEditorManager()(Code) | | |
beep | public void beep()(Code) | | Sound a beep if the "beep with warning" option is true
|
discardEditor | public void discardEditor(Editor ed)(Code) | | Discard the given editor and leave it to be collected by the garbage
collector.
|
getFinder | Finder getFinder()(Code) | | Return the shared finder object
|
openClass | public Editor openClass(String filename, String docFilename, String windowTitle, EditorWatcher watcher, boolean compiled, Rectangle bounds)(Code) | | Open an editor to display a class. The filename may be "null"
to open an empty editor (e.g. for displaying a view). The editor
is initially hidden. A call to "Editor::show" is needed to make
is visible after opening it.
Parameters: filename - name of the source file to open (may be null) Parameters: windowTitle - title of window (usually class name) Parameters: watcher - an object interested in editing events Parameters: compiled - true, if the class has been compiled Parameters: breakpoints - list of Integers: line numbers where bpts are the new editor, or null if there was a problem |
openText | public Editor openText(String filename, String windowTitle, Rectangle bounds)(Code) | | Open an editor to display a text document. The difference to
"openClass" is that code specific functions (such as compile,
debug, view) are disabled in the editor. The filename may be
"null" to open an empty editor. The editor is initially hidden.
A call to "Editor::show" is needed to make is visible after
opening it.
Parameters: filename - name of the source file to open (may be null) Parameters: windowTitle - title of window (usually class name) |
refreshAll | public void refreshAll()(Code) | | |
|
|