Package

net.sf.ij_plugins.scala.console

editor

Permalink

package editor

Visibility
  1. Public
  2. All

Type Members

  1. abstract class Action extends AnyRef

    Permalink

    Simple UI action.

  2. class Editor extends Publisher[EditorEvent]

    Permalink

    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 net.sf.ij_plugins.scala.console.editor.Editor.SourceFileEvent

  3. class EditorCodeArea extends AnyRef

    Permalink

    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

    Permalink
  2. object Editor

    Permalink

Ungrouped