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(Extension extension)
          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(ScssContext context)
          Replace variables with their values (textually) in subselectors
 

Methods in com.vaadin.sass.internal.selector with parameters of type Selector
 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.getParentSelectors()
          Returns the parent selector list.
 List<Selector> BlockNode.getSelectorList()
          Returns unmodifiable selector list of the block
 

Method parameters in com.vaadin.sass.internal.tree with type arguments of type Selector
 void BlockNode.setParentSelectors(List<Selector> parentSelectors)
          Sets the selector list of the parent node.
 void BlockNode.setSelectorList(List<Selector> selectorList)
          Sets the selector list for the node.
 

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

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

Fields in com.vaadin.sass.internal.visitor declared as Selector
 Selector Extension.replacingSelector
          A selectors that is extended by Extension.extendSelector, e.g.
 

Fields in com.vaadin.sass.internal.visitor with type parameters of type Selector
 Collection<Selector> Extension.context
          The context of the extending selector.
 

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

Constructors in com.vaadin.sass.internal.visitor with parameters of type Selector
Extension(SimpleSelectorSequence extendSelector, Selector replacingSelector, Collection<Selector> context)
           
 

Constructor parameters in com.vaadin.sass.internal.visitor with type arguments of type Selector
Extension(SimpleSelectorSequence extendSelector, Selector replacingSelector, Collection<Selector> context)
           
 



Copyright © 2013–2015 Vaadin. All rights reserved.