Uses of Class
org.eclipse.jdt.internal.eval.GlobalVariable

Packages that use GlobalVariable
org.eclipse.jdt.core.tests.eval   
org.eclipse.jdt.internal.eval   
 

Uses of GlobalVariable in org.eclipse.jdt.core.tests.eval
 

Methods in org.eclipse.jdt.core.tests.eval that return GlobalVariable
 GlobalVariable SimpleVariableTest.getVariable()
           
 

Uses of GlobalVariable in org.eclipse.jdt.internal.eval
 

Methods in org.eclipse.jdt.internal.eval that return GlobalVariable
 GlobalVariable[] EvaluationContext.allVariables()
          Returns the global variables of this evaluation context in the order they were created in.
 GlobalVariable EvaluationContext.newVariable(char[] typeName, char[] name, char[] initializer)
          Creates a new global variable with the given name, type and initializer.
 

Methods in org.eclipse.jdt.internal.eval with parameters of type GlobalVariable
 void EvaluationContext.deleteVariable(GlobalVariable variable)
          Deletes the given variable from this evaluation context.
 void EvaluationContext.evaluateVariable(GlobalVariable variable, INameEnvironment environment, java.util.Map options, IRequestor requestor, IProblemFactory problemFactory)
           
 

Constructors in org.eclipse.jdt.internal.eval with parameters of type GlobalVariable
VariablesInfo(char[] packageName, char[] className, ClassFile[] classFiles, GlobalVariable[] variables, int variableCount)
          Creates a new variables info.