Uses of Class
com.osbcp.cssparser.Selector

Uses of Selector in com.osbcp.cssparser
 

Methods in com.osbcp.cssparser that return types with arguments of type Selector
 java.util.List<Selector> Rule.getSelectors()
          Returns a list of all selectors attached to the rule.
 

Methods in com.osbcp.cssparser with parameters of type Selector
 void Rule.addSelector(Selector selector)
          Adds a selector to the rule.
 void Rule.removeSelector(Selector selector)
          Removes a selector from the rule.
 

Method parameters in com.osbcp.cssparser with type arguments of type Selector
 void Rule.addSelectors(java.util.List<Selector> selectors)
          Adds a list of selectors to the existing list of selectors.
 

Constructors in com.osbcp.cssparser with parameters of type Selector
Rule(Selector selector)
          Creates a rule with a single selector.
 

Constructor parameters in com.osbcp.cssparser with type arguments of type Selector
Rule(java.util.List<Selector> selectors)
          Creates a new rule based on a list of selectors.