Packages

object Dom extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dom
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait Attribute extends Modifier
  2. sealed trait AttributeValue extends Product with Serializable
  3. final case class BooleanAttribute(name: String, enabled: Boolean = true) extends Attribute with Product with Serializable

    Boolean attribute (like disabled, checked, etc.)

  4. final case class CompleteAttribute(name: String, value: AttributeValue) extends Attribute with CssSelectable with Product with Serializable

    Complete attribute with name and value

  5. sealed trait Element extends Dom with CssSelectable
  6. final case class Fragment(children: Iterable[Dom]) extends Dom with Product with Serializable
  7. final case class PartialAttribute(name: String) extends Product with Serializable

    Partial attribute that needs a value (like href := "...")

  8. final case class PartialMultiAttribute(name: String, separator: AttributeSeparator = AttributeSeparator.Space) extends Product with Serializable

    Partial multi-value attribute that needs values (like class := ("foo", "bar"))

  9. final case class RawHtml(content: String) extends Dom with Product with Serializable
  10. final case class Text(content: String) extends Dom with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def attr(name: String, value: String): CompleteAttribute
  6. def attr(name: String, value: AttributeValue): CompleteAttribute
  7. def attr(name: String): PartialAttribute
  8. def boolAttr(name: String, enabled: Boolean = true): BooleanAttribute
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  10. def element(tag: String): Generic
  11. def empty: Dom
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def fragment(children: Dom*): Fragment
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  17. implicit val htmlCodec: HttpContentCodec[Dom]
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def multiAttr(name: String, separator: AttributeSeparator, values: String*): CompleteAttribute
  20. def multiAttr(name: String, values: Iterable[String], separator: AttributeSeparator = AttributeSeparator.Space): CompleteAttribute
  21. def multiAttr(name: String, separator: AttributeSeparator): PartialMultiAttribute
  22. def multiAttr(name: String): PartialMultiAttribute
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  26. def raw(content: String): RawHtml
  27. implicit val schema: Schema[Dom]
  28. val script: Script
  29. val style: Style
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def text(content: String): Text
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. object AttributeValue extends Serializable
  37. object Element extends Serializable
  38. case object Empty extends Dom with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped