1 11 12 package org.eclipse.ui.internal.contexts; 13 14 import java.util.List ; 15 16 public interface IContextRegistry { 17 18 void addContextRegistryListener(IContextRegistryListener contextRegistryListener); 19 20 List getContextContextBindingDefinitions(); 21 22 List getContextDefinitions(); 23 24 void removeContextRegistryListener(IContextRegistryListener contextRegistryListener); 25 } 26 | Popular Tags |