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

All Implemented Interfaces:
    HTMLElement

Style information. See the STYLE element definition in HTML 4.01, the CSS module [DOM Level 2 Style Sheets and CSS] and the LinkStyle interface in the StyleSheets module [DOM Level 2 Style Sheets and CSS].

See also the Document Object Model (DOM) Level 2 HTML Specification.
Method from org.w3c.dom.html2.HTMLStyleElement Summary:
getDisabled,   getMedia,   getType,   setDisabled,   setMedia,   setType
Method from org.w3c.dom.html2.HTMLStyleElement Detail:
 public boolean getDisabled()
    Enables/disables the style sheet.
 public String getMedia()
    Designed for use with one or more target media. See the media attribute definition in HTML 4.01.
 public String getType()
    The content type of the style sheet language. See the type attribute definition in HTML 4.01.
 public  void setDisabled(boolean disabled)
    Enables/disables the style sheet.
 public  void setMedia(String media)
    Designed for use with one or more target media. See the media attribute definition in HTML 4.01.
 public  void setType(String type)
    The content type of the style sheet language. See the type attribute definition in HTML 4.01.