Interface HTMLLinkElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLLinkElement extends HTMLElement
The LINK element specifies a link to an externalresource, and defines this document's relationship to that resource(or vice versa). See the LINK element definition in HTML 4.0.
  • 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

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

      void setCharset(java.lang.String charset)
    • getHref

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

      void setHref(java.lang.String href)
    • getHreflang

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

      void setHreflang(java.lang.String hreflang)
    • getMedia

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

      void setMedia(java.lang.String media)
    • getRel

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

      void setRel(java.lang.String rel)
    • getRev

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

      void setRev(java.lang.String rev)
    • getTarget

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

      void setTarget(java.lang.String target)
    • getType

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

      void setType(java.lang.String type)