1 11 package org.eclipse.jdt.debug.eval; 12 13 14 import java.io.File ; 15 16 import org.eclipse.jdt.core.IJavaProject; 17 import org.eclipse.jdt.debug.core.IJavaDebugTarget; 18 import org.eclipse.jdt.internal.debug.eval.LocalEvaluationEngine; 19 import org.eclipse.jdt.internal.debug.eval.ast.engine.ASTEvaluationEngine; 20 21 35 public class EvaluationManager { 36 37 40 private EvaluationManager() { 41 } 42 43 57 public static IClassFileEvaluationEngine newClassFileEvaluationEngine(IJavaProject project, IJavaDebugTarget target, File directory) { 58 return new LocalEvaluationEngine(project, target, directory); 59 } 60 61 71 public static IAstEvaluationEngine newAstEvaluationEngine(IJavaProject project, IJavaDebugTarget target) { 72 return new ASTEvaluationEngine(project, target); 73 } 74 } 75 76 | Popular Tags |