Package org.aspectj.org.eclipse.jdt.internal.eval

Examples of org.aspectj.org.eclipse.jdt.internal.eval.GlobalVariable


}
/**
* @see org.aspectj.org.eclipse.jdt.core.eval.IEvaluationContext#newVariable(String, String, String)
*/
public IGlobalVariable newVariable(String typeName, String name, String initializer) {
  GlobalVariable newVar =
    this.context.newVariable(
      typeName.toCharArray(),
      name.toCharArray(),
      (initializer == null) ?
        null :
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.eval.GlobalVariable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.