1 11 package org.eclipse.debug.internal.ui.contexts; 12 13 import org.eclipse.debug.internal.ui.contexts.provisional.IDebugContextListener; 14 import org.eclipse.jface.viewers.ISelection; 15 16 17 22 public interface IDebugContextService { 23 24 29 public void addDebugContextListener(IDebugContextListener listener); 30 35 public void removeDebugContextListener(IDebugContextListener listener); 36 37 43 public void addDebugContextListener(IDebugContextListener listener, String partId); 44 45 51 public void removeDebugContextListener(IDebugContextListener listener, String partId); 52 53 59 public ISelection getActiveContext(); 60 61 67 public ISelection getActiveContext(String partId); 68 69 } 70 | Popular Tags |