blob: 505a98652bd3542ee8fc9e90d055e5231f5b46ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.runtime.registry;
import org.eclipse.core.runtime.*;
public class ExtensionAdapter extends ParentAdapter {
public ExtensionAdapter(Object object) {
super(object);
}
protected Object[] createChildren() {
IExtension extension = (IExtension)getObject();
IConfigurationElement [] elements = extension.getConfigurationElements();
Object [] result = new ConfigurationElementAdapter[elements.length];
for (int i=0; i<elements.length; i++) {
IConfigurationElement config = elements[i];
result[i]=new ConfigurationElementAdapter(config);
}
return result;
}
}