EditorCodeArea

ij_plugins.scala.console.editor.EditorCodeArea

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
     }
   }
 }

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def replaceText(text: String): Unit
def selectedText: String
def view: Parent

Concrete fields

val text: ObservableValue[String, String]