Package com.steadystate.css.dom
Class CSSStyleRuleImpl
- java.lang.Object
-
- com.steadystate.css.dom.CSSStyleRuleImpl
-
- All Implemented Interfaces:
java.io.Serializable
,CSSRule
,CSSStyleRule
public class CSSStyleRuleImpl extends java.lang.Object implements CSSStyleRule, java.io.Serializable
- 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 CSSStyleRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, SelectorList selectors)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCssText()
The parsable textual representation of the rule.CSSRule
getParentRule()
If this rule is contained inside another rule (e.g.CSSStyleSheet
getParentStyleSheet()
The style sheet that contains this rule.java.lang.String
getSelectorText()
The textual representation of the selector for the rule set.CSSStyleDeclaration
getStyle()
The declaration-block of this rule set.short
getType()
The type of the rule, as defined above.void
setCssText(java.lang.String cssText)
void
setSelectorText(java.lang.String selectorText)
void
setStyle(CSSStyleDeclarationImpl style)
java.lang.String
toString()
-
-
-
Constructor Detail
-
CSSStyleRuleImpl
public CSSStyleRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, SelectorList selectors)
-
-
Method Detail
-
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
public java.lang.String 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
public void setCssText(java.lang.String cssText) throws org.w3c.dom.DOMException
- Specified by:
setCssText
in interfaceCSSRule
- Throws:
org.w3c.dom.DOMException
-
getParentStyleSheet
public CSSStyleSheet getParentStyleSheet()
Description copied from interface:CSSRule
The style sheet that contains this rule.- Specified by:
getParentStyleSheet
in interfaceCSSRule
-
getParentRule
public CSSRule 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
-
getSelectorText
public java.lang.String getSelectorText()
Description copied from interface:CSSStyleRule
The textual representation of the selector for the rule set. The implementation may have stripped out insignificant whitespace while parsing the selector.- Specified by:
getSelectorText
in interfaceCSSStyleRule
-
setSelectorText
public void setSelectorText(java.lang.String selectorText) throws org.w3c.dom.DOMException
- Specified by:
setSelectorText
in interfaceCSSStyleRule
- Throws:
org.w3c.dom.DOMException
-
getStyle
public CSSStyleDeclaration getStyle()
Description copied from interface:CSSStyleRule
The declaration-block of this rule set.- Specified by:
getStyle
in interfaceCSSStyleRule
-
setStyle
public void setStyle(CSSStyleDeclarationImpl style)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-