1 11 12 package org.eclipse.ui.internal.contexts; 13 14 final class ContextRegistryEvent { 15 private IContextRegistry contextRegistry; 16 17 ContextRegistryEvent(IContextRegistry contextRegistry) { 18 if (contextRegistry == null) 19 throw new NullPointerException (); 20 21 this.contextRegistry = contextRegistry; 22 } 23 24 IContextRegistry getContextRegistry() { 25 return contextRegistry; 26 } 27 } 28 | Popular Tags |