Package com.steadystate.css.dom
Class CSSImportRuleImpl
- java.lang.Object
-
- com.steadystate.css.dom.CSSImportRuleImpl
-
- All Implemented Interfaces:
java.io.Serializable,CSSImportRule,CSSRule
public class CSSImportRuleImpl extends java.lang.Object implements CSSImportRule, java.io.Serializable
TODO: Implement getStyleSheet()- Version:
- $Release$
- Author:
- David Schweinsberg
- See Also:
- Serialized Form
-
-
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
Constructors Constructor Description CSSImportRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, java.lang.String href, MediaList media)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCssText()The parsable textual representation of the rule.java.lang.StringgetHref()The location of the style sheet to be imported.MediaListgetMedia()A list of media types for which this style sheet may be used.CSSRulegetParentRule()If this rule is contained inside another rule (e.g.CSSStyleSheetgetParentStyleSheet()The style sheet that contains this rule.CSSStyleSheetgetStyleSheet()The style sheet referred to by this rule, if it has been loaded.shortgetType()The type of the rule, as defined above.voidsetCssText(java.lang.String cssText)java.lang.StringtoString()
-
-
-
Constructor Detail
-
CSSImportRuleImpl
public CSSImportRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, java.lang.String href, MediaList media)
-
-
Method Detail
-
getType
public short getType()
Description copied from interface:CSSRuleThe 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 theCSSRuleinterface to the specific derived interface implied by thetype.
-
getCssText
public java.lang.String getCssText()
Description copied from interface:CSSRuleThe parsable textual representation of the rule. This reflects the current state of the rule and not its initial value.- Specified by:
getCssTextin interfaceCSSRule
-
setCssText
public void setCssText(java.lang.String cssText) throws org.w3c.dom.DOMException- Specified by:
setCssTextin interfaceCSSRule- Throws:
org.w3c.dom.DOMException
-
getParentStyleSheet
public CSSStyleSheet getParentStyleSheet()
Description copied from interface:CSSRuleThe style sheet that contains this rule.- Specified by:
getParentStyleSheetin interfaceCSSRule
-
getParentRule
public CSSRule getParentRule()
Description copied from interface:CSSRuleIf 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:
getParentRulein interfaceCSSRule
-
getHref
public java.lang.String getHref()
Description copied from interface:CSSImportRuleThe location of the style sheet to be imported. The attribute will not contain the"url(...)"specifier around the URI.- Specified by:
getHrefin interfaceCSSImportRule
-
getMedia
public MediaList getMedia()
Description copied from interface:CSSImportRuleA list of media types for which this style sheet may be used.- Specified by:
getMediain interfaceCSSImportRule
-
getStyleSheet
public CSSStyleSheet getStyleSheet()
Description copied from interface:CSSImportRuleThe style sheet referred to by this rule, if it has been loaded. The value of this attribute isnullif 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:
getStyleSheetin interfaceCSSImportRule
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-