Class

com.raquo.dombuilder.jsdom.simple

SimpleText

Related Doc: package simple

Permalink

class SimpleText extends Text[SimpleN, Text, Node] with ChildNode[SimpleN, Text, Node] with SimpleN

Linear Supertypes
SimpleN, ChildNode[SimpleN, Text, Node], Modifier[SimpleN with ParentNode[SimpleN, Node, Node]], Text[SimpleN, Text, Node], Text, Node[SimpleN, Text, Node], Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleText
  2. SimpleN
  3. ChildNode
  4. Modifier
  5. Text
  6. Text
  7. Node
  8. Node
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimpleText(initialText: String)

    Permalink

Type Members

  1. type BaseChildNode = SimpleN with ChildNode[SimpleN, Node, Node]

    Permalink
    Definition Classes
    Node
  2. type BaseElement = SimpleN with Element[SimpleN, Node, Node]

    Permalink
    Definition Classes
    Node
  3. type BaseNode = SimpleN with Node[SimpleN, Node, Node]

    Permalink
    Definition Classes
    Node
  4. type BaseParentNode = SimpleN with ParentNode[SimpleN, Node, Node]

    Permalink
    Definition Classes
    Node

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(parentNode: BaseParentNode): Unit

    Permalink
    Definition Classes
    ChildNode → Modifier
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. def isDescendantOf(parent: BaseParentNode): Boolean

    Permalink
    Definition Classes
    ChildNode
    Annotations
    @inline()
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def maybeParent: Option[BaseParentNode]

    Permalink
    Definition Classes
    ChildNode
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. val ref: Text

    Permalink

    Reference to the real DOM node which this Node represents.

    Reference to the real DOM node which this Node represents.

    Definition Classes
    SimpleTextNode
  19. def setParent(maybeNextParent: Option[BaseParentNode]): Unit

    Permalink

    Note: Make sure to call willSetParent before calling this method manually

    Note: Make sure to call willSetParent before calling this method manually

    Definition Classes
    ChildNode
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def text: String

    Permalink
    Definition Classes
    SimpleText → Text
    Annotations
    @inline()
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. val treeApi: JsTreeApi[SimpleN]

    Permalink
    Definition Classes
    SimpleTextChildNode
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def willSetParent(maybeNextParent: Option[BaseParentNode]): Unit

    Permalink

    This is called as a notification, BEFORE changes to the real DOM or to the Scala DOM tree are applied.

    This is called as a notification, BEFORE changes to the real DOM or to the Scala DOM tree are applied. - Corollary: When this is called, this node's maybeParent reference has not been updated yet.

    Default implementation is a noop. You can override this to implement DOM lifecycle hooks similar to React's componentWillUnmount.

    Note: This method is NOT automatically called inside setParent because setParent is called AFTER the real DOM was modified. Therefore, IF you call setParent directly, you need to also call willSetParent before that, if you plan to implement that method. However, if you only call setParent indirectly, via the methods defined in ParentNode, those methods take care of calling willSetParent for you.

    maybeNextParent

    None means this node is about to be detached form its parent

    Definition Classes
    ChildNode
    Annotations
    @inline()

Inherited from SimpleN

Inherited from ChildNode[SimpleN, Text, Node]

Inherited from Modifier[SimpleN with ParentNode[SimpleN, Node, Node]]

Inherited from Text[SimpleN, Text, Node]

Inherited from Text

Inherited from Node[SimpleN, Text, Node]

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped