Uses of Class
com.vaadin.sass.internal.selector.Selector

Packages that use Selector
com.vaadin.sass.internal.handler   
com.vaadin.sass.internal.parser   
com.vaadin.sass.internal.selector   
com.vaadin.sass.internal.tree   
com.vaadin.sass.internal.visitor   
 

Uses of Selector in com.vaadin.sass.internal.handler
 

Method parameters in com.vaadin.sass.internal.handler with type arguments of type Selector
 void SCSSDocumentHandler.extendDirective(List<Selector> list, boolean optional)
           
 void SCSSDocumentHandlerImpl.extendDirective(List<Selector> list, boolean optional)
           
 void SCSSDocumentHandler.startSelector(List<Selector> selectors)
           
 void SCSSDocumentHandlerImpl.startSelector(List<Selector> selectors)
           
 

Uses of Selector in com.vaadin.sass.internal.parser
 

Methods in com.vaadin.sass.internal.parser that return Selector
 Selector Parser.selector()
           
 

Methods in com.vaadin.sass.internal.parser that return types with arguments of type Selector
 List<Selector> Parser._parseSelectors()
           
 List<Selector> Parser.parseSCSSSelectors(org.w3c.css.sac.InputSource source)
           
 List<Selector> Parser.selectorList()
           
 

Uses of Selector in com.vaadin.sass.internal.selector
 

Methods in com.vaadin.sass.internal.selector that return Selector
 Selector Selector.createNested(Combinator c, SimpleSelectorSequence s)
          Appends the given sequence of simple selectors to this selector using combinator c.
 Selector Selector.replace(SimpleSelectorSequence extendSelector, Selector extending)
          Combine this selector with an @extend.
 Selector Selector.replaceParentReference(Selector replacement)
          Combine a parent selector with this selector, replacing parent reference selectors (&-selector) in this with replacement if any and return the modified copy of this.
 Selector Selector.replaceVariables(Collection<VariableNode> variables)
          Replace variables with their values (textually) in subselectors
 

Methods in com.vaadin.sass.internal.selector with parameters of type Selector
 Selector Selector.replace(SimpleSelectorSequence extendSelector, Selector extending)
          Combine this selector with an @extend.
 Selector Selector.replaceParentReference(Selector replacement)
          Combine a parent selector with this selector, replacing parent reference selectors (&-selector) in this with replacement if any and return the modified copy of this.
 boolean Selector.subsumes(Selector that)
          Returns whether this selector matches (at least) all elements that selector matches.
 

Constructors in com.vaadin.sass.internal.selector with parameters of type Selector
Selector(Selector source)
           
Selector(Selector first, Combinator comb, Selector second)
          Joins two selectors in sequence with given combinator.
SelectorSet(Selector selector)
           
 

Constructor parameters in com.vaadin.sass.internal.selector with type arguments of type Selector
SelectorSet(Collection<Selector> selectorCollection)
           
 

Uses of Selector in com.vaadin.sass.internal.tree
 

Methods in com.vaadin.sass.internal.tree that return types with arguments of type Selector
 List<Selector> ExtendNode.getList()
           
 List<Selector> BlockNode.getSelectorList()
           
 

Method parameters in com.vaadin.sass.internal.tree with type arguments of type Selector
 void BlockNode.setSelectorList(List<Selector> selectorList)
           
 

Constructor parameters in com.vaadin.sass.internal.tree with type arguments of type Selector
BlockNode(List<Selector> selectorList)
           
ExtendNode(List<Selector> list, boolean optional)
           
 

Uses of Selector in com.vaadin.sass.internal.visitor
 

Methods in com.vaadin.sass.internal.visitor with parameters of type Selector
static SelectorSet ExtendNodeHandler.createSelectorsForExtensions(Selector target, Set<com.vaadin.sass.internal.visitor.ExtendNodeHandler.Extension> extendsMap)
          Try to unify argument selector with each selector specified in an extend-clause.
 



Copyright © 2013–2014 Vaadin. All rights reserved.