1 11 package org.eclipse.debug.ui.actions; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.debug.core.model.ISuspendResume; 15 import org.eclipse.jface.viewers.ISelection; 16 import org.eclipse.ui.IWorkbenchPart; 17 18 40 public interface IRunToLineTarget { 41 42 54 public void runToLine(IWorkbenchPart part, ISelection selection, ISuspendResume target) throws CoreException; 55 56 65 public boolean canRunToLine(IWorkbenchPart part, ISelection selection, ISuspendResume target); 66 } 67 | Popular Tags |