Home » xml-commons-external-1.4.01-src » org.w3c » dom » html » [javadoc | source]
org.w3c.dom.html
public interface: HTMLLinkElement [javadoc | source]

All Implemented Interfaces:
    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 from org.w3c.dom.html.HTMLLinkElement Summary:
getCharset,   getDisabled,   getHref,   getHreflang,   getMedia,   getRel,   getRev,   getTarget,   getType,   setCharset,   setDisabled,   setHref,   setHreflang,   setMedia,   setRel,   setRev,   setTarget,   setType
Method from org.w3c.dom.html.HTMLLinkElement Detail:
 public String getCharset()
    The character encoding of the resource being linked to. See the charset attribute definition in HTML 4.0.
 public 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.
 public String getHref()
    The URI of the linked resource. See the href attribute definition in HTML 4.0.
 public String getHreflang()
    Language code of the linked resource. See the hreflang attribute definition in HTML 4.0.
 public String getMedia()
    Designed for use with one or more target media. See the media attribute definition in HTML 4.0.
 public String getRel()
    Forward link type. See the rel attribute definition in HTML 4.0.
 public String getRev()
    Reverse link type. See the rev attribute definition in HTML 4.0.
 public String getTarget()
    Frame to render the resource in. See the target attribute definition in HTML 4.0.
 public String getType()
    Advisory content type. See the type attribute definition in HTML 4.0.
 public  void setCharset(String charset)
 public  void setDisabled(boolean disabled)
 public  void setHref(String href)
 public  void setHreflang(String hreflang)
 public  void setMedia(String media)
 public  void setRel(String rel)
 public  void setRev(String rev)
 public  void setTarget(String target)
 public  void setType(String type)