com.steadystate.css.dom
Class CSSUnknownRuleImpl

java.lang.Object
  extended by com.steadystate.css.dom.CSSUnknownRuleImpl
All Implemented Interfaces:
java.io.Serializable, CSSRule, CSSUnknownRule

public class CSSUnknownRuleImpl
extends java.lang.Object
implements CSSUnknownRule, java.io.Serializable

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
CSSUnknownRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, java.lang.String text)
           
 
Method Summary
 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.
 short getType()
          The type of the rule, as defined above.
 void setCssText(java.lang.String cssText)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CSSUnknownRuleImpl

public CSSUnknownRuleImpl(CSSStyleSheetImpl parentStyleSheet,
                          CSSRule parentRule,
                          java.lang.String text)
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 the CSSRule interface to the specific derived interface implied by the type.

Specified by:
getType in interface CSSRule

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 interface CSSRule

setCssText

public void setCssText(java.lang.String cssText)
                throws org.w3c.dom.DOMException
Specified by:
setCssText in interface CSSRule
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 interface CSSRule

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 returns null.

Specified by:
getParentRule in interface CSSRule

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object