Packages

package editor

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package extra

Type Members

  1. abstract class Action extends AnyRef

    Simple UI action.

  2. class Editor extends Publisher[EditorEvent]

    Code input area of the console.

    Code input area of the console. Creates MVC components and gives access to the view, and externally relevant parts of the model (selection and text) and controller (actions).

    Publishes event ij_plugins.scala.console.editor.Editor.SourceFileEvent

  3. class EditorCodeArea extends AnyRef

    Text area that provides Scala syntax highlighting.

    Text area that provides Scala syntax highlighting.

    Example use:

    object ScalaKeywordsDemo extends JFXApp {
      val editorCodeArea = new EditorCodeArea()
      editorCodeArea.text = ...
      stage = new JFXApp.PrimaryStage {
        title = "Scala Keywords Demo"
        scene = new Scene(640, 480) {
          root = editorCodeArea.view
        }
      }
    }

Value Members

  1. object Action
  2. object Editor

Ungrouped