Errai 3.0.1-SNAPSHOT

Uses of Class
org.jboss.errai.codegen.Variable

Packages that use Variable
org.jboss.errai.codegen   
org.jboss.errai.codegen.builder.callstack   
org.jboss.errai.codegen.builder.impl   
org.jboss.errai.codegen.control   
 

Uses of Variable in org.jboss.errai.codegen
 

Methods in org.jboss.errai.codegen that return Variable
static Variable Variable.create(String name, Class<?> type)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.create(String name, Class<?> type, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.create(String name, MetaClass type)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.create(String name, MetaClass type, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.create(String name, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.create(String name, javax.enterprise.util.TypeLiteral<?> type)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.create(String name, javax.enterprise.util.TypeLiteral<?> type, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.createFinal(String name, Class<?> type)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.createFinal(String name, Class<?> type, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.createFinal(String name, MetaClass type)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.createFinal(String name, MetaClass type, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.createFinal(String name, javax.enterprise.util.TypeLiteral<?> type)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.createFinal(String name, javax.enterprise.util.TypeLiteral<?> type, Object initialization)
          Creates a variable, but does not assign it to a scope.
static Variable Variable.from(VariableReference ref)
           
 

Methods in org.jboss.errai.codegen that return types with arguments of type Variable
 Collection<Variable> Context.getDeclaredVariables()
          Returns all variables in this scope (does not include variables of parent scopes).
 Map<String,Variable> Context.getVariables()
          Returns all variables in this scope (does not include variables of parent scopes).
 

Methods in org.jboss.errai.codegen with parameters of type Variable
 Context Context.addVariable(Variable variable)
          Add a Variable to the current scope.
 boolean Context.isScoped(Variable variable)
          Checks is the given Variable is in scope.
 

Uses of Variable in org.jboss.errai.codegen.builder.callstack
 

Constructors in org.jboss.errai.codegen.builder.callstack with parameters of type Variable
DeclareVariable(Variable variable)
           
 

Uses of Variable in org.jboss.errai.codegen.builder.impl
 

Methods in org.jboss.errai.codegen.builder.impl with parameters of type Variable
 ContextBuilder ContextBuilder.addVariable(Variable variable)
           
 VariableDeclarationInitializer<ContextBuilder> ContextBuilder.declareVariable(Variable var)
           
 

Uses of Variable in org.jboss.errai.codegen.control
 

Methods in org.jboss.errai.codegen.control with parameters of type Variable
 void TryBlock.addCatchBlock(Variable exception)
           
 BlockStatement TryBlock.getCatchBlock(Variable exceptionVar)
           
 

Constructors in org.jboss.errai.codegen.control with parameters of type Variable
ForeachLoop(Variable loopVar, String collectionExpr, Statement body)
           
 


Errai 3.0.1-SNAPSHOT

Copyright © 2013-2014 JBoss, a division of Red Hat. All Rights Reserved.