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

Examples of org.aspectj.org.eclipse.jdt.internal.core.eval.EvaluationContextWrapper


   * @see IJavaProject#newEvaluationContext()
   */
  public IEvaluationContext newEvaluationContext() {
    EvaluationContext context = new EvaluationContext();
    context.setLineSeparator(Util.getLineSeparator(null/*no existing source*/, this));
    return new EvaluationContextWrapper(context, this);
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.eval.EvaluationContextWrapper

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.