1 11 package org.eclipse.jdt.debug.eval; 12 13 import org.eclipse.debug.core.DebugException; 14 import org.eclipse.jdt.debug.core.IJavaThread; 15 16 17 25 public interface IClassFileEvaluationEngine extends IEvaluationEngine { 26 35 public String [] getImports(); 36 37 46 public void setImports(String [] imports); 47 48 80 public void evaluate(String snippet, IJavaThread thread, IEvaluationListener listener, boolean hitBreakpoints) throws DebugException; 81 82 83 } 84 85 | Popular Tags |