|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of VariableNode in com.vaadin.sass.internal |
|---|
| Methods in com.vaadin.sass.internal that return VariableNode | |
|---|---|
static VariableNode |
ScssStylesheet.getVariable(String string)
|
| Methods in com.vaadin.sass.internal that return types with arguments of type VariableNode | |
|---|---|
static ArrayList<VariableNode> |
ScssStylesheet.getVariables()
|
static Map<String,VariableNode> |
ScssStylesheet.openVariableScope()
Start a new scope for variables. |
| Methods in com.vaadin.sass.internal with parameters of type VariableNode | |
|---|---|
void |
ScssStylesheet.addChild(int index,
VariableNode node)
|
static void |
ScssStylesheet.addVariable(VariableNode node)
|
| Method parameters in com.vaadin.sass.internal with type arguments of type VariableNode | |
|---|---|
static void |
ScssStylesheet.closeVariableScope(Map<String,VariableNode> originalScope)
End a scope for variables, replacing all active variables with those from the original scope (obtained from ScssStylesheet.openVariableScope()). |
| Uses of VariableNode in com.vaadin.sass.internal.handler |
|---|
| Method parameters in com.vaadin.sass.internal.handler with type arguments of type VariableNode | |
|---|---|
void |
SCSSDocumentHandler.startFunctionDirective(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
void |
SCSSDocumentHandlerImpl.startFunctionDirective(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
void |
SCSSDocumentHandler.startInclude(String name,
List<VariableNode> args,
boolean hasVariableArgs)
|
void |
SCSSDocumentHandlerImpl.startInclude(String name,
List<VariableNode> args,
boolean hasVariableArgs)
|
void |
SCSSDocumentHandler.startMixinDirective(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
void |
SCSSDocumentHandlerImpl.startMixinDirective(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
| Uses of VariableNode in com.vaadin.sass.internal.parser |
|---|
| Methods in com.vaadin.sass.internal.parser that return VariableNode | |
|---|---|
VariableNode |
Parser.argValueListItem()
|
VariableNode |
Parser.mixinArg()
|
| Methods in com.vaadin.sass.internal.parser that return types with arguments of type VariableNode | |
|---|---|
ArrayList<VariableNode> |
Parser.arglist()
|
ArrayList<VariableNode> |
Parser.argValuelist()
|
List<VariableNode> |
VariableArgumentList.getNamedVariables()
|
| Method parameters in com.vaadin.sass.internal.parser with type arguments of type VariableNode | |
|---|---|
SassList |
SassList.replaceVariables(Collection<VariableNode> variables)
|
VariableArgumentList |
VariableArgumentList.replaceVariables(Collection<VariableNode> variables)
|
SassExpression |
SassExpression.replaceVariables(Collection<VariableNode> variables)
|
SassListItem |
LexicalUnitImpl.replaceVariables(Collection<VariableNode> variables)
|
SassListItem |
SassListItem.replaceVariables(Collection<VariableNode> variable)
Returns a new item that is otherwise equal to this one but all occurrences of the given variables have been replaced by the values given in the VariableNodes. |
| Constructor parameters in com.vaadin.sass.internal.parser with type arguments of type VariableNode | |
|---|---|
VariableArgumentList(SassList.Separator separator,
List<SassListItem> list,
List<VariableNode> named)
|
|
| Uses of VariableNode in com.vaadin.sass.internal.tree |
|---|
| Methods in com.vaadin.sass.internal.tree that return VariableNode | |
|---|---|
VariableNode |
VariableNode.copy()
|
| Methods in com.vaadin.sass.internal.tree that return types with arguments of type VariableNode | |
|---|---|
protected static List<VariableNode> |
NodeWithVariableArguments.expandVariableArguments(List<VariableNode> arglist,
boolean hasVariableArguments)
|
List<VariableNode> |
DefNode.getArglist()
|
List<VariableNode> |
NodeWithVariableArguments.getArglist()
|
| Method parameters in com.vaadin.sass.internal.tree with type arguments of type VariableNode | |
|---|---|
SassListItem |
ReturnNode.evaluate(List<VariableNode> actualParams)
Evaluate the value of the return node in a context defined by the actual parameters and the state of ScssStylesheet (variables currently in scope, defined custom functions). |
protected static List<VariableNode> |
NodeWithVariableArguments.expandVariableArguments(List<VariableNode> arglist,
boolean hasVariableArguments)
|
void |
MicrosoftRuleNode.replaceVariables(Collection<VariableNode> variables)
|
void |
ReturnNode.replaceVariables(Collection<VariableNode> variables)
|
void |
RuleNode.replaceVariables(Collection<VariableNode> variables)
|
void |
SimpleNode.replaceVariables(Collection<VariableNode> variables)
|
void |
KeyframesNode.replaceVariables(Collection<VariableNode> variables)
|
void |
ExtendNode.replaceVariables(Collection<VariableNode> variables)
|
void |
IVariableNode.replaceVariables(Collection<VariableNode> variables)
|
void |
NestPropertiesNode.replaceVariables(Collection<VariableNode> variables)
|
void |
VariableNode.replaceVariables(Collection<VariableNode> variables)
|
void |
DefNode.replaceVariables(Collection<VariableNode> variables)
|
void |
NodeWithVariableArguments.replaceVariables(Collection<VariableNode> variables)
Replace variable references with their values in the argument list and name. |
void |
BlockNode.replaceVariables(Collection<VariableNode> variables)
|
protected void |
NodeWithVariableArguments.setArglist(List<VariableNode> arglist)
|
| Constructor parameters in com.vaadin.sass.internal.tree with type arguments of type VariableNode | |
|---|---|
DefNode(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
|
FunctionDefNode(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
|
MixinDefNode(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
|
MixinNode(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
|
NodeWithVariableArguments(String name,
Collection<VariableNode> args,
boolean hasVariableArgs)
|
|
| Uses of VariableNode in com.vaadin.sass.internal.tree.controldirective |
|---|
| Method parameters in com.vaadin.sass.internal.tree.controldirective with type arguments of type VariableNode | |
|---|---|
void |
EachDefNode.replaceVariables(Collection<VariableNode> variables)
|
void |
IfNode.replaceVariables(Collection<VariableNode> variables)
|
| Uses of VariableNode in com.vaadin.sass.internal.visitor |
|---|
| Methods in com.vaadin.sass.internal.visitor with parameters of type VariableNode | |
|---|---|
static void |
VariableNodeHandler.traverse(VariableNode node)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||