1 11 package org.eclipse.debug.ui.actions; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.jface.viewers.ISelection; 15 import org.eclipse.ui.IWorkbenchPart; 16 17 30 public interface IToggleBreakpointsTargetExtension extends IToggleBreakpointsTarget { 31 32 42 public void toggleBreakpoints(IWorkbenchPart part, ISelection selection) throws CoreException; 43 44 54 public boolean canToggleBreakpoints(IWorkbenchPart part, ISelection selection); 55 56 } 57 | Popular Tags |