org.kde.koala

Class CSSImportRule

public class CSSImportRule extends CSSRule

The CSSImportRule interface represents a \@import rule within a CSS style sheet. The \@import rule is used to import style rules from other style sheets.

UNKNOWN: The CSSImportRule interface represents a Constructor Summary protected CSSImportRule(Class dummy)

CSSImportRule()
CSSImportRule(CSSImportRule other)
CSSImportRule(CSSRule other)
Method Summary
Stringhref()
The location of the style sheet to be imported.
ArrayListmedia()
A list of media types for which this style sheet may be used.
CSSStyleSheetstyleSheet()
The style sheet referred to by this rule, if it has been loaded.

Constructor Detail

CSSImportRule

protected CSSImportRule(Class dummy)

CSSImportRule

public CSSImportRule()

CSSImportRule

public CSSImportRule(CSSImportRule other)

CSSImportRule

public CSSImportRule(CSSRule other)

Method Detail

href

public String href()
The location of the style sheet to be imported. The attribute will not contain the "url(...)" specifier around the URI.

UNKNOWN: The location of the style sheet to be imported.

media

public ArrayList media()
A list of media types for which this style sheet may be used.

UNKNOWN: A list of media types for which this style sheet may be used.

styleSheet

public CSSStyleSheet styleSheet()
The style sheet referred to by this rule, if it has been loaded. The value of this attribute is null if the style sheet has not yet been loaded or if it will not be loaded (e.g. if the style sheet is for a media type not supported by the user agent).

UNKNOWN: The style sheet referred to by this rule, if it has been loaded.