|
|||||||||
| Home >> All >> com >> steadystate >> css >> [ dom overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
com.steadystate.css.dom
Class CSSStyleRuleImpl

java.lang.Objectcom.steadystate.css.dom.CSSStyleRuleImpl
- All Implemented Interfaces:
- org.w3c.dom.css.CSSRule, org.w3c.dom.css.CSSStyleRule, java.io.Serializable
- public class CSSStyleRuleImpl
- extends java.lang.Object
- implements org.w3c.dom.css.CSSStyleRule, java.io.Serializable
- extends java.lang.Object
- Version:
- $Release$
| Field Summary | |
private org.w3c.dom.css.CSSRule |
_parentRule
|
private CSSStyleSheetImpl |
_parentStyleSheet
|
private org.w3c.css.sac.SelectorList |
_selectors
|
private org.w3c.dom.css.CSSStyleDeclaration |
_style
|
| 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 | |
CSSStyleRuleImpl(CSSStyleSheetImpl parentStyleSheet,
org.w3c.dom.css.CSSRule parentRule,
org.w3c.css.sac.SelectorList selectors)
|
|
| Method Summary | |
java.lang.String |
getCssText()
The parsable textual representation of the rule. |
org.w3c.dom.css.CSSRule |
getParentRule()
If this rule is contained inside another rule (e.g. |
org.w3c.dom.css.CSSStyleSheet |
getParentStyleSheet()
The style sheet that contains this rule. |
java.lang.String |
getSelectorText()
The textual representation of the selector for the rule set. |
org.w3c.dom.css.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)
The parsable textual representation of the rule. |
void |
setSelectorText(java.lang.String selectorText)
The textual representation of the selector for the rule set. |
void |
setStyle(CSSStyleDeclarationImpl style)
|
java.lang.String |
toString()
Convert this Object to a human-readable String. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
_parentStyleSheet
private CSSStyleSheetImpl _parentStyleSheet
_parentRule
private org.w3c.dom.css.CSSRule _parentRule
_selectors
private org.w3c.css.sac.SelectorList _selectors
_style
private org.w3c.dom.css.CSSStyleDeclaration _style
| Constructor Detail |
CSSStyleRuleImpl
public CSSStyleRuleImpl(CSSStyleSheetImpl parentStyleSheet, org.w3c.dom.css.CSSRule parentRule, org.w3c.css.sac.SelectorList selectors)
| Method Detail |
getType
public short getType()
- Description copied from interface:
org.w3c.dom.css.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 the
CSSRuleinterface to the specific derived interface implied by thetype.- Specified by:
getTypein interfaceorg.w3c.dom.css.CSSRule
getCssText
public java.lang.String getCssText()
- Description copied from interface:
org.w3c.dom.css.CSSRule - The parsable textual representation of the rule. This reflects the
current state of the rule and not its initial value.
- Specified by:
getCssTextin interfaceorg.w3c.dom.css.CSSRule
setCssText
public void setCssText(java.lang.String cssText) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.css.CSSRule - The parsable textual representation of the rule. This reflects the
current state of the rule and not its initial value.
- Specified by:
setCssTextin interfaceorg.w3c.dom.css.CSSRule
getParentStyleSheet
public org.w3c.dom.css.CSSStyleSheet getParentStyleSheet()
- Description copied from interface:
org.w3c.dom.css.CSSRule - The style sheet that contains this rule.
- Specified by:
getParentStyleSheetin interfaceorg.w3c.dom.css.CSSRule
getParentRule
public org.w3c.dom.css.CSSRule getParentRule()
- Description copied from interface:
org.w3c.dom.css.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 returns
null.- Specified by:
getParentRulein interfaceorg.w3c.dom.css.CSSRule
getSelectorText
public java.lang.String getSelectorText()
- Description copied from interface:
org.w3c.dom.css.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:
getSelectorTextin interfaceorg.w3c.dom.css.CSSStyleRule
setSelectorText
public void setSelectorText(java.lang.String selectorText) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.css.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:
setSelectorTextin interfaceorg.w3c.dom.css.CSSStyleRule
getStyle
public org.w3c.dom.css.CSSStyleDeclaration getStyle()
- Description copied from interface:
org.w3c.dom.css.CSSStyleRule - The declaration-block of this rule set.
- Specified by:
getStylein interfaceorg.w3c.dom.css.CSSStyleRule
setStyle
public void setStyle(CSSStyleDeclarationImpl style)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object - Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string concatenation with this object. If the result is
null, string concatenation will instead use"null".The default implementation returns
getClass().getName() + "@" + Integer.toHexString(hashCode()).
|
|||||||||
| Home >> All >> com >> steadystate >> css >> [ dom overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
com.steadystate.css.dom.CSSStyleRuleImpl