Class

pl.metastack.metaweb.tag

Link

Related Doc: package tag

Permalink

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

The HTML Link Element (<link>) specifies relationships between the current document and an external resource. Possible uses for this element include defining a relational framework for navigation. This Element is most used to link to style sheets. <link href="style.css" rel="stylesheet">

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

    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 append(node: Node): Tag

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

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

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

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

    Permalink
    Definition Classes
    LinkTag
  16. def byClass[T <: Tag](class: String): T

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

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

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

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

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

    Permalink
    Definition Classes
    Tag
  22. def charset(value: String): Link

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

    Permalink

    This attribute defines the character encoding of the linked resource.

    This attribute defines the character encoding of the linked resource. The value is a space- and/or comma-delimited list of character sets as defined in RFC 2045. The default value is ISO-8859-1.

    Usage note: This attribute is obsolete in HTML5 and must not be used by authors. To achieve its effect, use the Content-Type HTTP header on the linked resource.

  24. val children: Seq[Node]

    Permalink
    Definition Classes
    LinkTag
  25. def class(value: String): Link

    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): Link

    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): Link

    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 copy(attributes: scala.Predef.Map[String, Any] = attributes, children: Seq[Node] = children): Link

    Permalink
    Definition Classes
    LinkTag
  35. def crossorigin(value: String): Link

    Permalink
  36. def crossorigin: scala.Option[String]

    Permalink

    This enumerated attribute indicates if the fetching of the related image must be done using CORS or not.

    This enumerated attribute indicates if the fetching of the related image must be done using CORS or not. CORS-enabled images can be reused in the <canvas> element without being tainted. The allowed values are: <dl> <dt> anonymous </dt>

    A cross-origin request (i.e. with Origin: HTTP header) is performed. But no credential is sent (i.e. no cookie, no X.509 certificate and no HTTP Basic authentication is sent). If the server does not give credentials to the origin site (by not setting the Access-Control-Allow-Origin: HTTP header), the image will be tainted and its usage restricted..
    <dt> use-credentials </dt>
    A cross-origin request (i.e. with Origin: HTTP header) is performed with credential is sent (i.e. a cookie, a certificate and HTTP Basic authentication is performed). If the server does not give credentials to the origin site (through Access-Control-Allow-Credentials: HTTP header), the image will be tainted and its usage restricted.
    </dl> When not present, the resource is fetched without a CORS request (i.e. without sending the Origin: HTTP header), preventing its non-tainted used in <canvas> elements. If invalid, it is handled as if the enumerated keyword anonymous was used. See CORS settings attributes for additional information.

  37. def dir(value: String): Link

    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 disabled(value: String): Link

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

    Permalink

    This attribute is used to disable a link relationship.

    This attribute is used to disable a link relationship. In conjunction with scripting, this attribute could be used to turn on and off various style sheet relationships.

    Note: While there is no disabled attribute in the HTML standard, there is a disabled attribute on the HTMLLinkElement DOM object.

    The use of disabled as an HTML attribute is non-standard and only used by some browsers (W3 #27677). Do not use it. To achieve a similar effect, use one of the following techniques:

    • If the disabled attribute has been added directly to the element on the page, do not include the <link> element instead;
    • Set the disabled property of the StyleSheet DOM object via scripting.
  41. def draggable(value: String): Link

    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): Link

    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): Link

    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): Link

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

    Permalink

    This attribute specifies the URL of the linked resource.

    This attribute specifies the URL of the linked resource. A URL might be absolute or relative.

  53. def hreflang(value: String): Link

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

    Permalink

    This attribute indicates the language of the linked resource.

    This attribute indicates the language of the linked resource. It is purely advisory. Allowed values are determined by BCP47 for HTML5 and by RFC1766 for HTML 4. Use this attribute only if the href attribute is present.

  55. def id(value: String): Link

    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. def integrity(value: String): Link

    Permalink
  60. def integrity: scala.Option[String]

    Permalink

    Contains inline metadata that a user agent can use to verify that a fetched resource has been delivered free of unexpected manipulation. 

  61. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  62. def itemid(value: String): Link

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

    Permalink

    Definition Classes
    HTMLTag
  64. def itemprop(value: String): Link

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

    Permalink

    Definition Classes
    HTMLTag
  66. def itemref(value: String): Link

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

    Permalink

    Definition Classes
    HTMLTag
  68. def itemscope(value: String): Link

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

    Permalink

    Definition Classes
    HTMLTag
  70. def itemtype(value: String): Link

    Permalink
    Definition Classes
    HTMLTag
  71. 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
  72. def lang(value: String): Link

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

    Permalink
    Definition Classes
    TagNode
  75. def media(value: String): Link

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

    Permalink

    This attribute specifies the media which the linked resource applies to.

    This attribute specifies the media which the linked resource applies to. Its value must be a media query. This attribute is mainly useful when linking to external stylesheets by allowing the user agent to pick the best adapted one for the device it runs on.

    Usage note:

    • In HTML 4, this can only be a simple white-space-separated list of media description literals, i.e., media types and groups, where defined and allowed as values for this attribute, such as print, screen, aural, braille. HTML5 extended this to any kind of media queries, which are a superset of the allowed values of HTML 4.
    • Browsers not supporting the CSS3 Media Queries won't necessarily recognize the adequate link; do not forget to set fallback links, the restricted set of media queries defined in HTML 4.
  77. def methods(value: String): Link

    Permalink
  78. def methods: scala.Option[String]

    Permalink

    The value of this attribute provides information about the functions that might be performed on an object.

    The value of this attribute provides information about the functions that might be performed on an object. The values generally are given by the HTTP protocol when it is used, but it might (for similar reasons as for the title attribute) be useful to include advisory information in advance in the link. For example, the browser might choose a different rendering of a link as a function of the methods specified; something that is searchable might get a different icon, or an outside link might render with an indication of leaving the current site. This attribute is not well understood nor supported, even by the defining browser, Internet Explorer 4. See Methods Property (MSDN).

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

    Permalink
    Definition Classes
    AnyRef
  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): Link

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

    Permalink

    This attribute names a relationship of the linked document to the current document.

    This attribute names a relationship of the linked document to the current document. The attribute must be a space-separated list of the link types values. The most common use of this attribute is to specify a link to an external style sheet: the rel attribute is set to stylesheet, and the href attribute is set to the URL of an external style sheet to format the page. WebTV also supports the use of the value next for rel to preload the next page in a document series.

  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 rev(value: String): Link

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

    Permalink

    The value of this attribute shows the relationship of the current document to the linked document, as defined by the href attribute.

    The value of this attribute shows the relationship of the current document to the linked document, as defined by the href attribute. The attribute thus defines the reverse relationship compared to the value of the rel attribute. Link types values for the attribute are similar to the possible values for rel.

    Usage note: This attribute is obsolete in HTML5. Do not use it. To achieve its effect, use the rel attribute with the opposite link types values, e.g. made should be replaced by author. Also this attribute doesn't mean revision and must not be used with a version number, which is unfortunately the case on numerous sites.

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

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

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

    Permalink
    Definition Classes
    Tag
  95. def sizes(value: String): Link

    Permalink
  96. def sizes: scala.Option[String]

    Permalink

    This attribute defines the sizes of the icons for visual media contained in the resource.

    This attribute defines the sizes of the icons for visual media contained in the resource. It must be present only if the rel contains the icon link types value. It may have the following values:

    • any, meaning that the icon can be scaled to any size as it is in a vectorial format, like image/svg+xml.
    • a white-space separated list of sizes, each in the format <width in pixels>x<height in pixels> or <width in pixels>X<height in pixels>. Each of these sizes must be contained in the resource.

    Usage note:

    • Most icon format are only able to store one single icon; therefore most of the time the sizes contains only one entry. Among the major browsers, only the Apple's ICNS format allows the storage of multiple icons, and this format is only supported in WebKit.
    • Apple's iOS does not support this attribute, hence Apple's iPhone and iPad use special, non-standard link types values to define icon to be used as Web Clip or start-up placeholder: apple-touch-icon and apple-touch-startup-icon.
  97. def spellcheck(value: String): Link

    Permalink
    Definition Classes
    HTMLTag
  98. 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
  99. def style(value: String): Link

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

    Permalink
    Definition Classes
    AnyRef
  102. def tabindex(value: String): Link

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

    Permalink
    Definition Classes
    LinkTag
  105. def target(value: String): Link

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

    Permalink

    Defines the frame or window name that has the defined linking relationship or that will show the rendering of any linked resource.

  107. def title(value: String): Link

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

    Permalink
    Definition Classes
    HTMLTag
  110. 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
  111. def type(value: String): Link

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

    Permalink

    This attribute is used to define the type of the content linked to.

    This attribute is used to define the type of the content linked to. The value of the attribute should be a MIME type such as text/html, text/css, and so on. The common use of this attribute is to define the type of style sheet linked and the most common current value is text/css, which indicates a Cascading Style Sheet format.

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

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

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

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

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

    Permalink
    Definition Classes
    Tag

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HTMLTag[Link]

Inherited from Tag

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped