1 11 package org.eclipse.debug.internal.ui.contexts.provisional; 12 13 import org.eclipse.jface.viewers.ISelection; 14 import org.eclipse.ui.IWorkbenchPart; 15 16 25 public interface IDebugContextProvider { 26 27 32 public IWorkbenchPart getPart(); 33 34 39 public void addDebugContextListener(IDebugContextListener listener); 40 41 46 public void removeDebugContextListener(IDebugContextListener listener); 47 48 53 public ISelection getActiveContext(); 54 55 } 56 | Popular Tags |