Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.steadystate.css.dom
Class CSSImportRuleImpl  view CSSImportRuleImpl download CSSImportRuleImpl.java

java.lang.Object
  extended bycom.steadystate.css.dom.CSSImportRuleImpl
All Implemented Interfaces:
org.w3c.dom.css.CSSImportRule, org.w3c.dom.css.CSSRule, java.io.Serializable

public class CSSImportRuleImpl
extends java.lang.Object
implements org.w3c.dom.css.CSSImportRule, java.io.Serializable

TODO: Implement getStyleSheet()

Version:
$Release$

Field Summary
(package private)  java.lang.String _href
           
(package private)  org.w3c.dom.stylesheets.MediaList _media
           
(package private)  org.w3c.dom.css.CSSRule _parentRule
           
(package private)  CSSStyleSheetImpl _parentStyleSheet
           
 
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
CSSImportRuleImpl(CSSStyleSheetImpl parentStyleSheet, org.w3c.dom.css.CSSRule parentRule, java.lang.String href, org.w3c.dom.stylesheets.MediaList media)
           
 
Method Summary
 java.lang.String getCssText()
          The parsable textual representation of the rule.
 java.lang.String getHref()
          The location of the style sheet to be imported.
 org.w3c.dom.stylesheets.MediaList getMedia()
          A list of media types for which this style sheet may be used.
 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.
 org.w3c.dom.css.CSSStyleSheet getStyleSheet()
          The style sheet referred to by this rule, if it has been loaded.
 short getType()
          The type of the rule, as defined above.
 void setCssText(java.lang.String cssText)
          The parsable textual representation of the rule.
 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

CSSStyleSheetImpl _parentStyleSheet

_parentRule

org.w3c.dom.css.CSSRule _parentRule

_href

java.lang.String _href

_media

org.w3c.dom.stylesheets.MediaList _media
Constructor Detail

CSSImportRuleImpl

public CSSImportRuleImpl(CSSStyleSheetImpl parentStyleSheet,
                         org.w3c.dom.css.CSSRule parentRule,
                         java.lang.String href,
                         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 CSSRule interface to the specific derived interface implied by the type.

Specified by:
getType in interface org.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:
getCssText in interface org.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:
setCssText in interface org.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:
getParentStyleSheet in interface org.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:
getParentRule in interface org.w3c.dom.css.CSSRule

getHref

public java.lang.String getHref()
Description copied from interface: org.w3c.dom.css.CSSImportRule
The location of the style sheet to be imported. The attribute will not contain the "url(...)" specifier around the URI.

Specified by:
getHref in interface org.w3c.dom.css.CSSImportRule

getMedia

public org.w3c.dom.stylesheets.MediaList getMedia()
Description copied from interface: org.w3c.dom.css.CSSImportRule
A list of media types for which this style sheet may be used.

Specified by:
getMedia in interface org.w3c.dom.css.CSSImportRule

getStyleSheet

public org.w3c.dom.css.CSSStyleSheet getStyleSheet()
Description copied from interface: org.w3c.dom.css.CSSImportRule
The style sheet referred to by this rule, if it has been loaded. The value of this attribute is null if the style sheet has not yet been loaded or if it will not be loaded (e.g. if the style sheet is for a media type not supported by the user agent).

Specified by:
getStyleSheet in interface org.w3c.dom.css.CSSImportRule

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()).