All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLStyleElement

public interface HTMLStyleElement
extends HTMLElement
Style information. A more detailed style sheet object model is planned to be defined in a separate document. See the STYLE element definition in HTML 4.0.


Method Index

 o getDisabled()
Enables/disables the style sheet.
 o getMedia()
Designed for use with one or more target media.
 o getType()
The style sheet language (Internet media type).
 o setDisabled(boolean)
 o setMedia(String)
 o setType(String)

Methods

 o getDisabled
 public abstract boolean getDisabled()
Enables/disables the style sheet.

 o setDisabled
 public abstract void setDisabled(boolean disabled)
 o getMedia
 public abstract String getMedia()
Designed for use with one or more target media. See the media attribute definition in HTML 4.0.

 o setMedia
 public abstract void setMedia(String media)
 o getType
 public abstract String getType()
The style sheet language (Internet media type). See the type attribute definition in HTML 4.0.

 o setType
 public abstract void setType(String type)

All Packages  Class Hierarchy  This Package  Previous  Next  Index