1 11 12 package org.eclipse.ui.contexts; 13 14 import java.util.SortedSet ; 15 16 31 public interface IContextManager { 32 33 42 void addContextManagerListener( 43 IContextManagerListener contextManagerListener); 44 45 52 IContext getContext(String contextId); 53 54 68 SortedSet getDefinedContextIds(); 69 70 84 SortedSet getEnabledContextIds(); 85 86 96 void removeContextManagerListener( 97 IContextManagerListener contextManagerListener); 98 } 99 | Popular Tags |