|
|||||||||
| 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 CSSMediaRuleImpl

java.lang.Objectcom.steadystate.css.dom.CSSMediaRuleImpl
- All Implemented Interfaces:
- org.w3c.dom.css.CSSMediaRule, org.w3c.dom.css.CSSRule, java.io.Serializable
- public class CSSMediaRuleImpl
- extends java.lang.Object
- implements org.w3c.dom.css.CSSMediaRule, java.io.Serializable
- extends java.lang.Object
- Version:
- $Release$
| Field Summary | |
private org.w3c.dom.stylesheets.MediaList |
_media
|
private org.w3c.dom.css.CSSRule |
_parentRule
|
private CSSStyleSheetImpl |
_parentStyleSheet
|
private org.w3c.dom.css.CSSRuleList |
_rules
|
| 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 | |
CSSMediaRuleImpl(CSSStyleSheetImpl parentStyleSheet,
org.w3c.dom.css.CSSRule parentRule,
org.w3c.dom.stylesheets.MediaList media)
|
|
| Method Summary | |
void |
deleteRule(int index)
Used to delete a rule from the media block. |
org.w3c.dom.css.CSSRuleList |
getCssRules()
A list of all CSS rules contained within the media block. |
java.lang.String |
getCssText()
The parsable textual representation of the rule. |
org.w3c.dom.stylesheets.MediaList |
getMedia()
A list of media types for this 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. |
short |
getType()
The type of the rule, as defined above. |
int |
insertRule(java.lang.String rule,
int index)
Used to insert a new rule into the media block. |
void |
setCssText(java.lang.String cssText)
The parsable textual representation of the rule. |
void |
setRuleList(CSSRuleListImpl rules)
|
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
_media
private org.w3c.dom.stylesheets.MediaList _media
_rules
private org.w3c.dom.css.CSSRuleList _rules
| Constructor Detail |
CSSMediaRuleImpl
public CSSMediaRuleImpl(CSSStyleSheetImpl parentStyleSheet, org.w3c.dom.css.CSSRule parentRule, org.w3c.dom.stylesheets.MediaList media)
| 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
getMedia
public org.w3c.dom.stylesheets.MediaList getMedia()
- Description copied from interface:
org.w3c.dom.css.CSSMediaRule - A list of media types for this rule.
- Specified by:
getMediain interfaceorg.w3c.dom.css.CSSMediaRule
getCssRules
public org.w3c.dom.css.CSSRuleList getCssRules()
- Description copied from interface:
org.w3c.dom.css.CSSMediaRule - A list of all CSS rules contained within the media block.
- Specified by:
getCssRulesin interfaceorg.w3c.dom.css.CSSMediaRule
insertRule
public int insertRule(java.lang.String rule, int index) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.css.CSSMediaRule - Used to insert a new rule into the media block.
- Specified by:
insertRulein interfaceorg.w3c.dom.css.CSSMediaRule
deleteRule
public void deleteRule(int index)
throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.css.CSSMediaRule - Used to delete a rule from the media block.
- Specified by:
deleteRulein interfaceorg.w3c.dom.css.CSSMediaRule
setRuleList
public void setRuleList(CSSRuleListImpl rules)
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.CSSMediaRuleImpl