Package com.steadystate.css.dom
Class CSSPageRuleImpl
- java.lang.Object
-
- com.steadystate.css.dom.CSSPageRuleImpl
-
- All Implemented Interfaces:
java.io.Serializable,CSSPageRule,CSSRule
public class CSSPageRuleImpl extends java.lang.Object implements CSSPageRule, java.io.Serializable
TO DO: Implement setSelectorText()- 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 CSSPageRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, java.lang.String ident, java.lang.String pseudoPage)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCssText()The parsable textual representation of the rule.CSSRulegetParentRule()If this rule is contained inside another rule (e.g.CSSStyleSheetgetParentStyleSheet()The style sheet that contains this rule.java.lang.StringgetSelectorText()The parsable textual representation of the page selector for the rule.CSSStyleDeclarationgetStyle()The declaration-block of this rule.shortgetType()The type of the rule, as defined above.voidsetCssText(java.lang.String cssText)protected voidsetIdent(java.lang.String ident)protected voidsetPseudoPage(java.lang.String pseudoPage)voidsetSelectorText(java.lang.String selectorText)voidsetStyle(CSSStyleDeclarationImpl style)
-
-
-
Constructor Detail
-
CSSPageRuleImpl
public CSSPageRuleImpl(CSSStyleSheetImpl parentStyleSheet, CSSRule parentRule, java.lang.String ident, java.lang.String pseudoPage)
-
-
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
-
getSelectorText
public java.lang.String getSelectorText()
Description copied from interface:CSSPageRuleThe parsable textual representation of the page selector for the rule.- Specified by:
getSelectorTextin interfaceCSSPageRule
-
setSelectorText
public void setSelectorText(java.lang.String selectorText) throws org.w3c.dom.DOMException- Specified by:
setSelectorTextin interfaceCSSPageRule- Throws:
org.w3c.dom.DOMException
-
getStyle
public CSSStyleDeclaration getStyle()
Description copied from interface:CSSPageRuleThe declaration-block of this rule.- Specified by:
getStylein interfaceCSSPageRule
-
setIdent
protected void setIdent(java.lang.String ident)
-
setPseudoPage
protected void setPseudoPage(java.lang.String pseudoPage)
-
setStyle
public void setStyle(CSSStyleDeclarationImpl style)
-
-