LeafNode class abstract base

A leaf node in Parchment document tree.

Inheritance
Mixed-in types

Constructors

LeafNode(Object data)
factory

Properties

documentOffset → int
Offset in characters of this node in the document.
no setterinherited
hashCode → int
The hash code for this object.
no setterinherited
isFirst → bool
Returns true if this node is the first node in the parent list.
no setterinherited
isLast → bool
Returns true if this node is the last node in the parent list.
no setterinherited
length → int
Length of this node in characters.
no setteroverride
list → LinkedList<Node>?
The linked list containing this element.
no setterinherited
mounted → bool
Returns true if this node is currently mounted, e.g. parent is not null.
no setterinherited
next → Node?
The successor of this element in its linked list.
no setterinherited
offset → int
Offset in characters of this node relative to parent node.
no setterinherited
parent → LineNode
Current parent of this node. May be null if this node is not mounted.
no setteroverride
previous → Node?
The predecessor of this element in its linked list.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
style → ParchmentStyle
no setterinherited
value → Object
Contents of this node, either a String if this is a TextNode or an EmbeddableObject if this is an EmbedNode.
no setter

Methods

applyAttribute(ParchmentAttribute attribute) → void
Applies style attribute to this node.
inherited
applyStyle(ParchmentStyle value) → void
Applies new style value to this node. Provided value is merged into current style.
override
clearStyle() → void
Clears style of this node.
inherited
containsOffset(int offset) → bool
Returns true if this node contains character at specified offset in the document.
inherited
cutAt(int index) → LeafNode?
Cuts a leaf node from index to the end of this node and returns new node in detached state (e.g. mounted returns false).
delete(int index, int length) → void
Delete length characters of this node starting from index.
override
formatAndOptimize(ParchmentStyle? style) → void
Formats this node and optimizes it with adjacent leaf nodes if needed.
insert(int index, Object data, ParchmentStyle? style) → void
Insert data at specified character index with style style.
override
insertAfter(Node entry) → void
Insert an element after this element in this element's linked list.
inherited
insertBefore(Node entry) → void
Insert an element before this element in this element's linked list.
inherited
invalidateDocumentOffset() → void
inherited
invalidateOffset() → void
inherited
isolate(int index, int length) → LeafNode
Isolates a new leaf node starting at index with specified length.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
optimize() → void
Optimizes this text node by merging it with adjacent nodes if they share the same style.
override
retain(int index, int length, ParchmentStyle? style) → void
Format length characters of this node starting from index with specified style style.
override
splitAt(int index) → LeafNode?
Splits this leaf node at index and returns new node.
toDelta() → Delta
Returns Delta representation of this node.
override
toPlainText() → String
Returns plain-text representation of this node.
inherited
toString() → String
A string representation of this object.
override
Unlink the element from its linked list.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited