1 11 package org.eclipse.debug.ui.contexts; 12 13 import org.eclipse.jface.viewers.ISelection; 14 import org.eclipse.ui.IWorkbenchPart; 15 16 41 public interface IDebugContextProvider { 42 43 49 public IWorkbenchPart getPart(); 50 51 56 public void addDebugContextListener(IDebugContextListener listener); 57 58 63 public void removeDebugContextListener(IDebugContextListener listener); 64 65 70 public ISelection getActiveContext(); 71 72 } 73 | Popular Tags |