package document
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- trait Anchor extends AnyRef
A position pointer into the document that may dynamically move along as the text is edited.
- class AnchoredInterval extends AnyRef
A pair of anchors tracking the movement of an interval (span) in a text.
- sealed trait Bias extends AnyRef
- trait Document extends LinesHolder with ObservableEvents[DocumentEvent]
- sealed trait DocumentEvent extends UndoableEdit
- class DocumentImpl extends Document
- case class Insertion(document: Document, offset: Int, chars: CharSequence) extends DocumentEvent with Product with Serializable
- class LinedString extends CharSequence with LinesHolder
- trait LinesHolder extends AnyRef
- case class Location(line: Int, indent: Int) extends Product with Serializable
- case class Removal(document: Document, start: Int, stop: Int, before: CharSequence) extends DocumentEvent with Product with Serializable
- case class Replacement(document: Document, start: Int, stop: Int, before: CharSequence, now: CharSequence) extends DocumentEvent with Product with Serializable