1 11 package org.eclipse.core.internal.registry; 12 13 import org.eclipse.core.runtime.IConfigurationElement; 14 15 18 public class ThirdLevelConfigurationElementHandle extends ConfigurationElementHandle { 19 20 public ThirdLevelConfigurationElementHandle(IObjectManager objectManager, int id) { 21 super(objectManager, id); 22 } 23 24 protected ConfigurationElement getConfigurationElement() { 25 return (ConfigurationElement) objectManager.getObject(getId(), RegistryObjectManager.THIRDLEVEL_CONFIGURATION_ELEMENT); 26 } 27 28 public IConfigurationElement[] getChildren() { 29 return (IConfigurationElement[]) objectManager.getHandles(getConfigurationElement().getRawChildren(), RegistryObjectManager.THIRDLEVEL_CONFIGURATION_ELEMENT); 30 } 31 32 } 33 | Popular Tags |