Class

pl.metastack.metaweb.tag

Body

Related Doc: package tag

Permalink

case class Body(attributes: scala.Predef.Map[String, Any] = Predef.Map.empty, children: Seq[Node] = Seq.empty) extends HTMLTag[Body] with Product with Serializable

The HTML Body Element (<body>) represents the content of an HTML document. There can be only one <body> element in a document.

Linear Supertypes
Serializable, Serializable, Product, Equals, HTMLTag[Body], Tag, Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Body
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HTMLTag
  7. Tag
  8. Node
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Body(attributes: scala.Predef.Map[String, Any] = Predef.Map.empty, children: Seq[Node] = Seq.empty)

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(nodes: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  4. def +:(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  5. def -(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  6. def --(node: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  7. def :+(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def accesskey(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  10. def accesskey: scala.Option[String]

    Permalink

    Provides a hint for generating a keyboard shortcut for the current element.

    Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.

    Definition Classes
    HTMLTag
  11. def alink(value: String): Body

    Permalink
  12. def alink: scala.Option[String]

    Permalink

    Color of text for hyperlinks when selected.

    Color of text for hyperlinks when selected. This method is non-conforming, use CSS color property in conjunction with the :active pseudo-class instead.

  13. def append(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  14. def appendAll(nodes: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  15. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  16. def attr(attribute: String): scala.Option[Any]

    Permalink
    Definition Classes
    Tag
  17. val attributes: scala.Predef.Map[String, Any]

    Permalink
    Definition Classes
    BodyTag
  18. def background(value: String): Body

    Permalink
  19. def background: scala.Option[String]

    Permalink

    URI of a image to use as a background.

    URI of a image to use as a background. This method is non-conforming, use CSS background property on the element instead.

    Note: Starting in Gecko 7.0 (Firefox 7.0 / Thunderbird 7.0 / SeaMonkey 2.4), background is no longer resolved as a URI; instead, it's treated as a simple string.

  20. def bgcolor(value: String): Body

    Permalink
  21. def bgcolor: scala.Option[String]

    Permalink

    Background color for the document.

    Background color for the document. This method is non-conforming, use CSS background-color property on the element instead.

  22. def bottommargin(value: String): Body

    Permalink
  23. def bottommargin: scala.Option[String]

    Permalink

    The margin of the bottom of the body.

    The margin of the bottom of the body. This method is non-conforming, use CSS margin-bottom property on the element instead.

  24. def byClass[T <: Tag](class: String): T

    Permalink
    Definition Classes
    Tag
  25. def byClassOpt[T <: HTMLTag[_]](class: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  26. def byId[T <: Tag](id: String): T

    Permalink
    Definition Classes
    Tag
  27. def byIdOpt[T <: Tag](id: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  28. def byTag[T <: Tag](tagName: String): T

    Permalink
    Definition Classes
    Tag
  29. def byTagOpt[T <: Tag](tag: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  30. val children: Seq[Node]

    Permalink
    Definition Classes
    BodyTag
  31. def class(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  32. def class: scala.Option[String]

    Permalink

    Is a space-separated list of the classes of the element.

    Is a space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName().

    Definition Classes
    HTMLTag
  33. def clearAll: Tag

    Permalink
    Definition Classes
    Tag
  34. def clearAttr: Tag

    Permalink
    Definition Classes
    Tag
  35. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def contenteditable(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  37. def contenteditable: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating if the element should be editable by the user.

    Is an enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing. The attribute must take one of the following values:

    • true or the empty string, which indicates that the element must be editable;
    • false, which indicates that the element must not be editable.
    Definition Classes
    HTMLTag
  38. def contextmenu(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  39. def contextmenu: scala.Option[String]

    Permalink

    Is the id of an <menu> to use as the contextual menu for this element.

    Is the id of an <menu> to use as the contextual menu for this element.

    Definition Classes
    HTMLTag
  40. def copy(attributes: scala.Predef.Map[String, Any] = attributes, children: Seq[Node] = children): Body

    Permalink
    Definition Classes
    BodyTag
  41. def dir(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  42. def dir: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating the directionality of the element's text.

    Is an enumerated attribute indicating the directionality of the element's text. It can have the following values:

    • ltr, which means left to right and is to be used for languages that are written from the left to the right (like English);
    • rtl, which means right to left and is to be used for languages that are written from the right to the left (like Arabic);
    • auto, which let the user agent decides. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then apply that directionality to the whole element.
    Definition Classes
    HTMLTag
  43. def draggable(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  44. def draggable: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API.

    Is an enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API. It can have the following values:

    • true, which indicates that the element may be dragged
    • false, which indicates that the element may not be dragged.
    Definition Classes
    HTMLTag
  45. def dropzone(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  46. def dropzone: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating what types of content can be dropped on an element, using the Drag and Drop API.

    Is an enumerated attribute indicating what types of content can be dropped on an element, using the Drag and Drop API. It can have the following values:

    • copy, which indicates that dropping will create a copy of the element that was dragged
    • move, which indicates that the element that was dragged will be moved to this new location.
    • link, will create a link to the dragged data.
    Definition Classes
    HTMLTag
  47. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  48. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  49. def find(f: (Node) ⇒ Boolean): scala.Option[Node]

    Permalink
    Definition Classes
    Tag
  50. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  51. def hidden(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  52. def hidden: scala.Option[String]

    Permalink

    Is a Boolean attribute indicates that the element is not yet, or is no longer, relevant.

    Is a Boolean attribute indicates that the element is not yet, or is no longer, relevant. For example, it can be used to hide elements of the page that can't be used until the login process has been completed. The browser won't render such elements. This attribute must not be used to hide content that could legitimately be shown.

    Definition Classes
    HTMLTag
  53. def id(value: String): Body

    Permalink
    Definition Classes
    HTMLTagTag
  54. def id: scala.Option[String]

    Permalink

    Defines a unique identifier (ID) which must be unique in the whole document.

    Defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).

    Definition Classes
    HTMLTagTag
  55. def instantiate(nodes: (String, Node)*): Tag

    Permalink
    Definition Classes
    Tag
  56. def instantiateMap(nodes: scala.Predef.Map[String, Node]): Tag

    Permalink
    Definition Classes
    Tag
  57. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  58. def itemid(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  59. def itemid: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  60. def itemprop(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  61. def itemprop: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  62. def itemref(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  63. def itemref: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  64. def itemscope(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  65. def itemscope: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  66. def itemtype(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  67. def itemtype: scala.Option[String]

    Permalink

    These attributes are related to the WHATWG HTML Microdata feature.

    These attributes are related to the WHATWG HTML Microdata feature.

    Definition Classes
    HTMLTag
  68. def lang(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  69. def lang: scala.Option[String]

    Permalink

    Participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in.

    Participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in. The tag contains one single entry value in the format defines in the Tags for Identifying Languages (BCP47) IETF document. xml:lang has priority over it.

    Definition Classes
    HTMLTag
  70. def leftmargin(value: String): Body

    Permalink
  71. def leftmargin: scala.Option[String]

    Permalink

    The margin of the left of the body.

    The margin of the left of the body. This method is non-conforming, use CSS margin-left property on the element instead.

  72. def link(value: String): Body

    Permalink
  73. def link: scala.Option[String]

    Permalink

    Color of text for unvisited hypertext links.

    Color of text for unvisited hypertext links. This method is non-conforming, use CSS color property in conjunction with the :link pseudo-class instead.

  74. def map(f: (Node) ⇒ Node): Node

    Permalink
    Definition Classes
    TagNode
  75. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  78. def onafterprint(value: String): Body

    Permalink
  79. def onafterprint: scala.Option[String]

    Permalink

    Function to call after the user has printed the document.

  80. def onbeforeprint(value: String): Body

    Permalink
  81. def onbeforeprint: scala.Option[String]

    Permalink

    Function to call when the user requests printing of the document.

  82. def onbeforeunload(value: String): Body

    Permalink
  83. def onbeforeunload: scala.Option[String]

    Permalink

    Function to call when the document is about to be unloaded.

  84. def onblur(value: String): Body

    Permalink
  85. def onblur: scala.Option[String]

    Permalink

    Function to call when the document loses focus.

  86. def onerror(value: String): Body

    Permalink
  87. def onerror: scala.Option[String]

    Permalink

    Function to call when the document fails to load properly.

  88. def onfocus(value: String): Body

    Permalink
  89. def onfocus: scala.Option[String]

    Permalink

    Function to call when the document receives focus.

  90. def onhashchange(value: String): Body

    Permalink
  91. def onhashchange: scala.Option[String]

    Permalink

    Function to call when the fragment identifier part (starting with the hash ( '#') character) of the document's current address has changed.

    Function to call when the fragment identifier part (starting with the hash ( '#') character) of the document's current address has changed.

  92. def onlanguagechange(value: String): Body

    Permalink
  93. def onlanguagechange: scala.Option[String]

    Permalink

    Function to call when the preferred languages changed.

  94. def onload(value: String): Body

    Permalink
  95. def onload: scala.Option[String]

    Permalink

    Function to call when the document has finished loading.

  96. def onmessage(value: String): Body

    Permalink
  97. def onmessage: scala.Option[String]

    Permalink

    Function to call when the document has received a message.

  98. def onoffline(value: String): Body

    Permalink
  99. def onoffline: scala.Option[String]

    Permalink

    Function to call when network communication has failed.

  100. def ononline(value: String): Body

    Permalink
  101. def ononline: scala.Option[String]

    Permalink

    Function to call when network communication has been restored.

  102. def onpopstate(value: String): Body

    Permalink
  103. def onpopstate: scala.Option[String]

    Permalink

    Function to call when the user has navigated session history.

  104. def onredo(value: String): Body

    Permalink
  105. def onredo: scala.Option[String]

    Permalink

    Function to call when the user has moved forward in undo transaction history.

  106. def onresize(value: String): Body

    Permalink
  107. def onresize: scala.Option[String]

    Permalink

    Function to call when the document has been resized.

  108. def onstorage(value: String): Body

    Permalink
  109. def onstorage: scala.Option[String]

    Permalink

    Function to call when the storage area has changed.

  110. def onundo(value: String): Body

    Permalink
  111. def onundo: scala.Option[String]

    Permalink

    Function to call when the user has moved backward in undo transaction history.

  112. def onunload(value: String): Body

    Permalink
  113. def onunload: scala.Option[String]

    Permalink

    Function to call when the document is going away.

  114. def partialMap(f: PartialFunction[Node, Node]): Node

    Permalink
    Definition Classes
    Tag
  115. def prepend(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  116. def remAttr(attribute: String): Tag

    Permalink
    Definition Classes
    Tag
  117. def remove(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  118. def removeAll(node: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  119. def replace(reference: Node, node: Node): Tag

    Permalink
    Definition Classes
    Tag
  120. def rightmargin(value: String): Body

    Permalink
  121. def rightmargin: scala.Option[String]

    Permalink

    The margin of the right of the body.

    The margin of the right of the body. This method is non-conforming, use CSS margin-right property on the element instead.

  122. def set(nodes: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  123. def set(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  124. def setAttr(attribute: String, value: Any): Tag

    Permalink
    Definition Classes
    Tag
  125. def spellcheck(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  126. def spellcheck: scala.Option[String]

    Permalink

    Is an enumerated attribute defines whether the element may be checked for spelling errors.

    Is an enumerated attribute defines whether the element may be checked for spelling errors. It may have the following values:

    • true, which indicates that the element should be, if possible, checked for spelling errors;
    • false, which indicates that the element should not be checked for spelling errors.
    Definition Classes
    HTMLTag
  127. def style(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  128. def style: scala.Option[String]

    Permalink

    Contains CSS styling declarations to be applied to the element.

    Contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the <style> element have mainly the purpose of allowing for quick styling, for example for testing purposes.

    Definition Classes
    HTMLTag
  129. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  130. def tabindex(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  131. def tabindex: scala.Option[String]

    Permalink

    Is an integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position.

    Is an integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position. It can takes several values:

    • a negative value means that the element should be focusable, but should not be reachable via sequential keyboard navigation;
    • 0 means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;
    • a positive value which means should be focusable and reachable via sequential keyboard navigation; its relative order is defined by the value of the attribute: the sequential follow the increasing number of the tabindex. If several elements share the same tabindex, their relative order follows their relative position in the document).
    Definition Classes
    HTMLTag
  132. def tagName: String

    Permalink
    Definition Classes
    BodyTag
  133. def text(value: String): Body

    Permalink
  134. def text: scala.Option[String]

    Permalink

    Foreground color of text.

    Foreground color of text. This method is non-conforming, use CSS color property on the element instead.

  135. def title(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  136. def title: scala.Option[String]

    Permalink

    Contains a text representing advisory information related to the element it belongs to.

    Contains a text representing advisory information related to the element it belongs to. Such information can typically, but not necessarily, be presented to the user as a tooltip.

    Definition Classes
    HTMLTag
  137. def topmargin(value: String): Body

    Permalink
  138. def topmargin: scala.Option[String]

    Permalink

    The margin of the top of the body.

    The margin of the top of the body. This method is non-conforming, use CSS margin-top property on the element instead.

  139. def translate(value: String): Body

    Permalink
    Definition Classes
    HTMLTag
  140. def translate: scala.Option[String]

    Permalink

    Is an enumerated attribute that is used to specify whether an element's attribute values and the values of it s Text node children are to be translated when the page is localized, or whether to leave them unchanged.

    Is an enumerated attribute that is used to specify whether an element's attribute values and the values of it s Text node children are to be translated when the page is localized, or whether to leave them unchanged. It can have the following values:

    • empty string and "yes", which indicates that the element will be translated.
    • "no", which indicates that the element will not be translated.
    Definition Classes
    HTMLTag
  141. def updateChild[T <: Tag](id: String, f: (T) ⇒ Node): Node

    Permalink
    Definition Classes
    Tag
  142. def vlink(value: String): Body

    Permalink
  143. def vlink: scala.Option[String]

    Permalink

    Color of text for visited hypertext links.

    Color of text for visited hypertext links. This method is non-conforming, use CSS color property in conjunction with the :visited pseudo-class instead.

  144. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  147. def withoutId: Tag

    Permalink
    Definition Classes
    Tag

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HTMLTag[Body]

Inherited from Tag

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped