Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1c386db8d83a408b08bd97dbabda35cc22535393 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**********************************************************************
 * 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.cdt.internal.core.InternalCExtension;
import org.eclipse.core.resources.IProject;

public abstract class AbstractCExtension extends InternalCExtension implements ICExtension {

	/**
	 * Returns the project for which this extrension is defined.
	 *	
	 * @return the project
	 */
	public final IProject getProject() {
		return super.getProject();
	}
	
	public final ICExtensionReference getExtensionReference() {
		return super.getExtensionReference();
	}
}

Back to the top