blob: b32ef1f58ee8df6dd0e3018f561b04bac9779fce [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 interface IPluginFolder extends IAdaptable {
public static final int F_EXTENSIONS = 1;
public static final int F_EXTENSION_POINTS = 2;
public static final int F_IMPORTS = 3;
public static final int F_LIBRARIES = 4;
public static final int F_FRAGMENTS = 5;
public Object[] getChildren();
int getFolderId();
public IPluginDescriptor getPluginDescriptor();
}