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 ExportWizardRegistry extends AbstractExtensionWizardRegistry { 23 24 private static ExportWizardRegistry singleton; 25 26 31 public static synchronized ExportWizardRegistry getInstance() { 32 if (singleton == null) { 33 singleton = new ExportWizardRegistry(); 34 } 35 return singleton; 36 } 37 38 41 public ExportWizardRegistry() { 42 super(); 43 } 44 45 48 protected String getExtensionPoint() { 49 return IWorkbenchRegistryConstants.PL_EXPORT; 50 } 51 52 55 protected String getPlugin() { 56 return PlatformUI.PLUGIN_ID; 57 } 58 } 59 | Popular Tags |