Class

pl.metastack.metaweb.tag

Area

Related Doc: package tag

Permalink

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

The HTML <area> element defines a hot-spot region on an image, and optionally associates it with a hypertext link. This element is used only within a <map> element.

Linear Supertypes
Serializable, Serializable, Product, Equals, HTMLTag[Area], Tag, Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Area
  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 Area(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): Area

    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 alt(value: String): Area

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

    Permalink

    A text string alternative to display on browsers that do not display images.

    A text string alternative to display on browsers that do not display images. The text should be phrased so that it presents the user with the same kind of choice as the image would offer when displayed without the alternative text. In HTML4, this attribute is required, but may be the empty string (""). In HTML5, this attribute is required only if the href attribute is used.

  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
    AreaTag
  18. def byClass[T <: Tag](class: String): T

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

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

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

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

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

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

    Permalink
    Definition Classes
    AreaTag
  25. def class(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  26. 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
  27. def clearAll: Tag

    Permalink
    Definition Classes
    Tag
  28. def clearAttr: Tag

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

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

    Permalink
    Definition Classes
    HTMLTag
  31. 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
  32. def contextmenu(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  33. 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
  34. def coords(value: String): Area

    Permalink
  35. def coords: scala.Option[String]

    Permalink

    A set of values specifying the coordinates of the hot-spot region.

    A set of values specifying the coordinates of the hot-spot region. The number and meaning of the values depend upon the value specified for the shape attribute. For a rect or rectangle shape, the coords value is two x,y pairs: left, top, right, and bottom. For a circle shape, the value is x,y,r where x,y is a pair specifying the center of the circle and r is a value for the radius. For a poly or polygon< shape, the value is a set of x,y pairs for each point in the polygon: x1,y1,x2,y2,x3,y3, and so on. In HTML4, the values are numbers of pixels or percentages, if a percent sign (%) is appended; in HTML5, the values are numbers of CSS pixels.

  36. def copy(attributes: scala.Predef.Map[String, Any] = attributes, children: Seq[Node] = children): Area

    Permalink
    Definition Classes
    AreaTag
  37. def dir(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  38. 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
  39. def download(value: String): Area

    Permalink
  40. def download: scala.Option[String]

    Permalink

    This attribute, if present, indicates that the author intends the hyperlink to be used for downloading a resource.

    This attribute, if present, indicates that the author intends the hyperlink to be used for downloading a resource. See <a> for a full description of the download attribute.

  41. def draggable(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  42. 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
  43. def dropzone(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  44. 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
  45. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  49. def hidden(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  50. 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
  51. def href(value: String): Area

    Permalink
  52. def href: scala.Option[String]

    Permalink

    The hyperlink target for the area.

    The hyperlink target for the area. Its value is a valid URL. In HTML4, either this attribute or the nohref attribute must be present in the element. In HTML5, this attribute may be omitted; if so, the area element does not represent a hyperlink.

  53. def hreflang(value: String): Area

    Permalink
  54. def hreflang: scala.Option[String]

    Permalink

    Indicates the language of the linked resource.

    Indicates the language of the linked resource. Allowed values are determined by BCP47. Use this attribute only if the href attribute is present.

  55. def id(value: String): Area

    Permalink
    Definition Classes
    HTMLTagTag
  56. 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
  57. def instantiate(nodes: (String, Node)*): Tag

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

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

    Permalink
    Definition Classes
    Any
  60. def itemid(value: String): Area

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

    Permalink

    Definition Classes
    HTMLTag
  62. def itemprop(value: String): Area

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

    Permalink

    Definition Classes
    HTMLTag
  64. def itemref(value: String): Area

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

    Permalink

    Definition Classes
    HTMLTag
  66. def itemscope(value: String): Area

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

    Permalink

    Definition Classes
    HTMLTag
  68. def itemtype(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  69. 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
  70. def lang(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  71. 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
  72. def map(f: (Node) ⇒ Node): Node

    Permalink
    Definition Classes
    TagNode
  73. def media(value: String): Area

    Permalink
  74. def media: scala.Option[String]

    Permalink

    A hint of the media for which the linked resource was designed, for example print and screen.

    A hint of the media for which the linked resource was designed, for example print and screen. If omitted, it defaults to all. Use this attribute only if the href attribute is present.

  75. def name(value: String): Area

    Permalink
  76. def name: scala.Option[String]

    Permalink

    Define a names for the clickable area so that it can be scripted by older browsers.

  77. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  78. def nohref(value: String): Area

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

    Permalink

    Indicates that no hyperlink exists for the associated area.

    Indicates that no hyperlink exists for the associated area. Either this attribute or the href attribute must be present in the element.

    Usage note: This attribute is obsolete in HTML5, instead omitting the href attribute is sufficient.

  80. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  82. def partialMap(f: PartialFunction[Node, Node]): Node

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

    Permalink
    Definition Classes
    Tag
  84. def rel(value: String): Area

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

    Permalink

    For anchors containing the href attribute, this attribute specifies the relationship of the target object to the link object.

    For anchors containing the href attribute, this attribute specifies the relationship of the target object to the link object. The value is a comma-separated list of link types values. The values and their semantics will be registered by some authority that might have meaning to the document author. The default relationship, if no other is given, is void. Use this attribute only if the href attribute is present.

  86. def remAttr(attribute: String): Tag

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

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

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

    Permalink
    Definition Classes
    Tag
  90. def set(nodes: Seq[Node]): Tag

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

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

    Permalink
    Definition Classes
    Tag
  93. def shape(value: String): Area

    Permalink
  94. def shape: scala.Option[String]

    Permalink

    The shape of the associated hot spot.

    The shape of the associated hot spot. The specifications for HTML 5 and HTML 4 define the values rect, which defines a rectangular region; circle, which defines a circular region; poly, which defines a polygon; and default, which indicates the entire region beyond any defined shapes. Many browsers, notably Internet Explorer 4 and higher, support circ, polygon, and rectangle as valid values for shape; these values are .

  95. def spellcheck(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  96. 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
  97. def style(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  98. 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
  99. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  100. def tabindex(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  101. 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
  102. def tagName: String

    Permalink
    Definition Classes
    AreaTag
  103. def target(value: String): Area

    Permalink
  104. def target: scala.Option[String]

    Permalink

    This attribute specifies where to display the linked resource.

    This attribute specifies where to display the linked resource. In HTML4, this is the name of, or a keyword for, a frame. In HTML5, it is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). The following keywords have special meanings:

    • _self: Load the response into the same HTML4 frame (or HTML5 browsing context) as the current one. This value is the default if the attribute is not specified.
    • _blank: Load the response into a new unnamed HTML4 window or HTML5 browsing context.
    • _parent: Load the response into the HTML4 frameset parent of the current frame or HTML5 parent browsing context of the current one. If there is no parent, this option behaves the same way as _self.
    • _top: In HTML4: Load the response into the full, original window, canceling all other frames. In HTML5: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self. Use this attribute only if the href attribute is present.
  105. def title(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  106. 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
  107. def translate(value: String): Area

    Permalink
    Definition Classes
    HTMLTag
  108. 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
  109. def type(value: String): Area

    Permalink
  110. def type: scala.Option[String]

    Permalink

    This attribute specifies the media type in the form of a MIME type for the link target.

    This attribute specifies the media type in the form of a MIME type for the link target. Generally, this is provided strictly as advisory information; however, in the future a browser might add a small icon for multimedia types. For example, a browser might add a small speaker icon when type is set to audio/wav. For a complete list of recognized MIME types, see http://www.w3.org/TR/html4/references.html#ref-MIMETYPES. Use this attribute only if the href attribute is present.

  111. def updateChild[T <: Tag](id: String, f: (T) ⇒ Node): Node

    Permalink
    Definition Classes
    Tag
  112. final def wait(): Unit

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

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

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

    Permalink
    Definition Classes
    Tag

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HTMLTag[Area]

Inherited from Tag

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped