Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 584dfb3a3f293f1b265c458a007afd028b22620d (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**********************************************************************
 * Copyright (c) 2002,2003 Timesys 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: 
 * Timesys - Initial API and implementation
 **********************************************************************/

package org.eclipse.cdt.core.builder;

import org.eclipse.cdt.core.builder.model.ICBuildConfigProvider;
import org.eclipse.core.runtime.CoreException;

/**
 * Interface representing an instance of
 * a CBuildConfig extension point.
 */
public interface ICBuildConfigPoint {

	/**
	 * Returns the unique id for the provider.
	 * 
	 * @return unique id.
	 */
	public String getId();

	/**
	 * Returns the name of the provider.
	 * 
	 * @return provider name.
	 */
	public String getName();

	/**
	 * Returns the natures supported by the provider.
	 * 
	 * @return natures supported by the provider.
	 */
	public String[] getNatures();

	/**
	 * Returns the name of the provider's
	 * implementing class.
	 * 
	 * @return name of the provider's implementing class.
	 */
	public String getProviderClassName();

	/**
	 * Returns an instance of the provider's
	 * implementing class.
	 * 
	 * @return instance of ICBuildConfigProvider.
	 */
	public ICBuildConfigProvider getProvider() throws CoreException;
}

Back to the top