1 11 12 package org.eclipse.ui.internal.commands; 13 14 final class CommandRegistryEvent { 15 16 private ICommandRegistry commandRegistry; 17 18 CommandRegistryEvent(ICommandRegistry commandRegistry) { 19 if (commandRegistry == null) 20 throw new NullPointerException (); 21 22 this.commandRegistry = commandRegistry; 23 } 24 25 public ICommandRegistry getCommandRegistry() { 26 return commandRegistry; 27 } 28 } 29 | Popular Tags |