Package com.steadystate.css.dom
Class CSSImportRuleImpl
java.lang.Object
com.steadystate.css.dom.CSSImportRuleImpl
- All Implemented Interfaces:
Serializable
,CSSImportRule
,CSSRule
TODO:
Implement getStyleSheet()
- Version:
- $Release$
- Author:
- David Schweinsberg
- See Also:
-
Field Summary
Fields inherited from interface org.w3c.dom.css.CSSRule
CHARSET_RULE, FONT_FACE_RULE, IMPORT_RULE, MEDIA_RULE, PAGE_RULE, STYLE_RULE, UNKNOWN_RULE
-
Constructor Summary
ConstructorsConstructorDescriptionCSSImportRuleImpl
(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, String href, MediaList media) -
Method Summary
Modifier and TypeMethodDescriptionThe parsable textual representation of the rule.getHref()
The location of the style sheet to be imported.getMedia()
A list of media types for which this style sheet may be used.If this rule is contained inside another rule (e.g.The style sheet that contains this rule.The style sheet referred to by this rule, if it has been loaded.short
getType()
The type of the rule, as defined above.void
setCssText
(String cssText) toString()
-
Constructor Details
-
CSSImportRuleImpl
public CSSImportRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, String href, MediaList media)
-
-
Method Details
-
getType
public short getType()Description copied from interface:CSSRule
The type of the rule, as defined above. The expectation is that binding-specific casting methods can be used to cast down from an instance of theCSSRule
interface to the specific derived interface implied by thetype
. -
getCssText
Description copied from interface:CSSRule
The parsable textual representation of the rule. This reflects the current state of the rule and not its initial value.- Specified by:
getCssText
in interfaceCSSRule
-
setCssText
- Specified by:
setCssText
in interfaceCSSRule
- Throws:
DOMException
-
getParentStyleSheet
Description copied from interface:CSSRule
The style sheet that contains this rule.- Specified by:
getParentStyleSheet
in interfaceCSSRule
-
getParentRule
Description copied from interface:CSSRule
If this rule is contained inside another rule (e.g. a style rule inside an @media block), this is the containing rule. If this rule is not nested inside any other rules, this returnsnull
.- Specified by:
getParentRule
in interfaceCSSRule
-
getHref
Description copied from interface:CSSImportRule
The location of the style sheet to be imported. The attribute will not contain the"url(...)"
specifier around the URI.- Specified by:
getHref
in interfaceCSSImportRule
-
getMedia
Description copied from interface:CSSImportRule
A list of media types for which this style sheet may be used.- Specified by:
getMedia
in interfaceCSSImportRule
-
getStyleSheet
Description copied from interface:CSSImportRule
The style sheet referred to by this rule, if it has been loaded. The value of this attribute isnull
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).- Specified by:
getStyleSheet
in interfaceCSSImportRule
-
toString
-