1 11 12 package org.eclipse.debug.ui.actions; 13 14 import org.eclipse.core.runtime.CoreException; 15 import org.eclipse.jface.viewers.ISelection; 16 import org.eclipse.ui.IWorkbenchPart; 17 18 27 public interface IAddMemoryBlocksTarget { 28 29 37 public boolean canAddMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException; 38 39 46 public boolean supportsAddMemoryBlocks(IWorkbenchPart part); 47 48 49 64 public void addMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException; 65 } 66 | Popular Tags |