org.apache.batik.css
Interface CSSRuleListOwner

All Known Implementing Classes:
CSSOMMediaRule, CSSOMStyleSheet

public interface CSSRuleListOwner

This interface represents the objects which own a list of CSSRules.


Method Summary
 void appendRule(CSSRule r)
          Appends a rule.
 void deleteRule(int index)
          Used to delete a rule from the list.
 Parser getParser()
          Returns the parser used to read style sheets.
 ValueFactoryMap getValueFactoryMap()
          Returns the map of value factories.
 int insertRule(java.lang.String rule, int index)
          Used to insert a new rule into the list.
 

Method Detail

getParser

public Parser getParser()
Returns the parser used to read style sheets.

getValueFactoryMap

public ValueFactoryMap getValueFactoryMap()
Returns the map of value factories.

insertRule

public int insertRule(java.lang.String rule,
                      int index)
               throws DOMException
Used to insert a new rule into the list.

deleteRule

public void deleteRule(int index)
                throws DOMException
Used to delete a rule from the list.

appendRule

public void appendRule(CSSRule r)
Appends a rule.


Copyright © 2001 Apache Software Foundation. All Rights Reserved.