1 11 package org.eclipse.core.internal.registry; 12 13 import org.eclipse.core.runtime.IPluginDescriptor; 14 15 20 public class ExtensionPointHandle extends BaseExtensionPointHandle { 21 22 static final ExtensionPointHandle[] EMPTY_ARRAY = new ExtensionPointHandle[0]; 23 24 public ExtensionPointHandle(IObjectManager objectManager, int id) { 25 super(objectManager, id); 26 } 27 28 public IPluginDescriptor getDeclaringPluginDescriptor() { 29 return RegistryCompatibilityHelper.getPluginDescriptor(getContributor().getName()); 30 } 31 } 32 | Popular Tags |