blob: edc1c3857580e6454e035836bfdbd985ac3092dd [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2002,2003 QNX Software Systems Ltd. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* QNX Software Systems - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.core;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.w3c.dom.Element;
public interface ICDescriptor {
public ICOwnerInfo getProjectOwner();
public String getPlatform();
public IProject getProject();
public ICExtensionReference[] get(String extensionPoint);
public ICExtensionReference[] get(String extensionPoint, boolean update) throws CoreException;
public ICExtensionReference create(String extensionPoint, String id) throws CoreException;
public void remove(ICExtensionReference extension) throws CoreException;
public void remove(String extensionPoint) throws CoreException;
public Element getProjectData(String id) throws CoreException;
public void saveProjectData() throws CoreException;
}