org.kde.koala

Class StyleSheet

public class StyleSheet extends Object implements QtSupport

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. In HTML, the StyleSheet interface represents either an external style sheet, included via the HTML LINK element, or an inline STYLE element. In XML, this interface represents an external style sheet, included via a style sheet processing instruction .

UNKNOWN: The StyleSheet interface is the abstract base interface for any type of style sheet.

Constructor Summary
protected StyleSheet(Class dummy)
StyleSheet()
StyleSheet(StyleSheet other)
Method Summary
booleandisabled()
false if the style sheet is applied to the document.
Stringhref()
If the style sheet is a linked style sheet, the value of its attribute is its location.
booleanisCSSStyleSheet()
booleanisNull()
ArrayListmedia()
The intended destination media for style information.
NodeownerNode()
The node that associates this style sheet with the document.
StyleSheetparentStyleSheet()
For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists.
voidsetDisabled(boolean arg1)
see disabled
Stringtitle()
The advisory title.
Stringtype()
This specifies the style sheet language for this style sheet.

Constructor Detail

StyleSheet

protected StyleSheet(Class dummy)

StyleSheet

public StyleSheet()

StyleSheet

public StyleSheet(StyleSheet other)

Method Detail

disabled

public boolean disabled()
false if the style sheet is applied to the document. true if it is not. Modifying this attribute may cause a reresolution of style for the document.

UNKNOWN: false if the style sheet is applied to the document.

href

public String href()
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. See the href attribute definition for the LINK element in HTML 4.0, and the href pseudo-attribute for the XML style sheet processing instruction .

UNKNOWN: If the style sheet is a linked style sheet, the value of its attribute is its location.

isCSSStyleSheet

public boolean isCSSStyleSheet()

UNKNOWN:

isNull

public boolean isNull()

media

public ArrayList media()
The intended destination media for style information. The media is often specified in the ownerNode . See the media attribute definition for the LINK element in HTML 4.0, and the media pseudo-attribute for the XML style sheet processing instruction .

UNKNOWN: The intended destination media for style information.

ownerNode

public Node ownerNode()
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, this attribute has a value of null.

UNKNOWN: The node that associates this style sheet with the document.

parentStyleSheet

public StyleSheet parentStyleSheet()
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 the attribute is null.

UNKNOWN: For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists.

setDisabled

public void setDisabled(boolean arg1)
see disabled

UNKNOWN: see disabled

title

public String title()
The advisory title. The title is often specified in the ownerNode . See the title attribute definition for the LINK element in HTML 4.0, and the title pseudo-attribute for the XML style sheet processing instruction .

UNKNOWN: The advisory title.

type

public String type()
This specifies the style sheet language for this style sheet. The style sheet language is specified as a content type (e.g. "text/css"). The content type is often specified in the ownerNode . A list of registered content types can be found at ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/ . Also see the type attribute definition for the LINK element in HTML 4.0, and the type pseudo-attribute for the XML style sheet processing instruction .

UNKNOWN: This specifies the style sheet language for this style sheet.