public interface IStyleSheet
The StyleSheet interface is the abstract base interface for any type of style sheet. It represents a single style sheet associated with a structured document.
Modifier and Type | Method and Description |
---|---|
boolean |
getDisabled()
false if the style sheet is applied to the document. true if it is not.
|
java.lang.String |
getHref()
If the style sheet is a linked style sheet, the value of its attribute is its location.
|
IMediaList |
getMedia()
The intended destination media for style information.
|
Node |
getOwnerNode()
The node that associates this style sheet with the document.
|
IStyleSheet |
getParentStyleSheet()
For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists.
|
java.lang.String |
getTitle()
The advisory title.
|
java.lang.String |
getType()
This specifies the style sheet language for this style sheet.
|
void |
setDisabled(boolean value)
false if the style sheet is applied to the document. true if it is not.
|
java.lang.String getType()
This specifies the style sheet language for this style sheet. The style sheet language is specified as a content type (e.g. "text/css").
boolean getDisabled()
false if the style sheet is applied to the document. true if it is not. Modifying this attribute may cause a new resolution of style for the document. A stylesheet only applies if both an appropriate medium definition is present and the disabled attribute is false. So, if the media doesn't apply to the current user agent, the disabled attribute is ignored.
Value:true
if disabled; otherwise, false
.void setDisabled(boolean value)
false if the style sheet is applied to the document. true if it is not. Modifying this attribute may cause a new resolution of style for the document. A stylesheet only applies if both an appropriate medium definition is present and the disabled attribute is false. So, if the media doesn't apply to the current user agent, the disabled attribute is ignored.
Value:true
if disabled; otherwise, false
.Node getOwnerNode()
The node that associates this style sheet with the document. For HTML, this may be the corresponding LINK or STYLE element. For XML, it may be the linking processing instruction. For style sheets that are included by other style sheets, the value of this attribute is null.
IStyleSheet getParentStyleSheet()
For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists. If the style sheet is a top-level style sheet, or the style sheet language does not support inclusion, the value of this attribute is null.
java.lang.String getHref()
If the style sheet is a linked style sheet, the value of its attribute is its location. For inline style sheets, the value of this attribute is null.
java.lang.String getTitle()
The advisory title.
IMediaList getMedia()
The intended destination media for style information.