Packages

t

org.nlogo.api

EditorAreaInterface

trait EditorAreaInterface extends AnyRef

Source
EditorAreaInterface.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EditorAreaInterface
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getCaretPosition: Int
  2. abstract def getLineOfText(lineNum: Int): String
  3. abstract def getSelectionEnd: Int
  4. abstract def getSelectionStart: Int
  5. abstract def getText(start: Int, len: Int): String
  6. abstract def insertString(pos: Int, str: String): Unit
  7. abstract def lineToEndOffset(pos: Int): Int
  8. abstract def lineToStartOffset(pos: Int): Int
  9. abstract def offsetToLine(pos: Int): Int
  10. abstract def remove(start: Int, len: Int): Unit
  11. abstract def replace(start: Int, len: Int, str: String): Unit
  12. abstract def replaceSelection(text: String): Unit
  13. abstract def setCaretPosition(pos: Int): Unit
  14. abstract def setSelectionEnd(pos: Int): Unit
  15. abstract def setSelectionStart(pos: Int): Unit

Concrete Value Members

  1. def beginCompoundEdit(): Unit
  2. def endCompoundEdit(): Unit