Module jdk.xml.dom

Interface HTMLLinkElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLLinkElement
extends HTMLElement
The LINK element specifies a link to an external resource, and defines this document's relationship to that resource (or vice versa). See the LINK element definition in HTML 4.0 (see also the LinkStyle interface in the module).

See also the Document Object Model (DOM) Level 2 Specification.

Since:
1.4, DOM Level 2
  • Method Details

    • getDisabled

      boolean getDisabled()
      Enables/disables the link. This is currently only used for style sheet links, and may be used to activate or deactivate style sheets.
    • setDisabled

      void setDisabled​(boolean disabled)
    • getCharset

      String getCharset()
      The character encoding of the resource being linked to. See the charset attribute definition in HTML 4.0.
    • setCharset

      void setCharset​(String charset)
    • getHref

      String getHref()
      The URI of the linked resource. See the href attribute definition in HTML 4.0.
    • setHref

      void setHref​(String href)
    • getHreflang

      String getHreflang()
      Language code of the linked resource. See the hreflang attribute definition in HTML 4.0.
    • setHreflang

      void setHreflang​(String hreflang)
    • getMedia

      String getMedia()
      Designed for use with one or more target media. See the media attribute definition in HTML 4.0.
    • setMedia

      void setMedia​(String media)
    • getRel

      String getRel()
      Forward link type. See the rel attribute definition in HTML 4.0.
    • setRel

      void setRel​(String rel)
    • getRev

      String getRev()
      Reverse link type. See the rev attribute definition in HTML 4.0.
    • setRev

      void setRev​(String rev)
    • getTarget

      String getTarget()
      Frame to render the resource in. See the target attribute definition in HTML 4.0.
    • setTarget

      void setTarget​(String target)
    • getType

      String getType()
      Advisory content type. See the type attribute definition in HTML 4.0.
    • setType

      void setType​(String type)