1 11 package org.eclipse.ui.internal.wizards; 12 13 import org.eclipse.ui.PlatformUI; 14 import org.eclipse.ui.internal.registry.IWorkbenchRegistryConstants; 15 16 22 public class ImportWizardRegistry extends AbstractExtensionWizardRegistry { 23 24 private static ImportWizardRegistry singleton; 25 26 31 public static synchronized ImportWizardRegistry getInstance() { 32 if (singleton == null) { 33 singleton = new ImportWizardRegistry(); 34 } 35 return singleton; 36 } 37 38 39 42 public ImportWizardRegistry() { 43 super(); 44 } 45 46 49 protected String getExtensionPoint() { 50 return IWorkbenchRegistryConstants.PL_IMPORT; 51 } 52 53 56 protected String getPlugin() { 57 return PlatformUI.PLUGIN_ID; 58 } 59 } 60 | Popular Tags |