Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7c1fe5cbda49218c03388eccb5e5cc5bd002ed28 (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
/*******************************************************************************
 * Copyright (c) 2006 Nokia Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * Nokia Corporation - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.managedbuilder.core;

/**
 * Clients that need to augment configuration attributes may need to insure
 * that those modification are picked up when configruation elements are loaded.
 * Implementing this interface will insure that a client's plugin is loaded
 * before all available configurations are available to the first project that
 * is loaded in the workbench.
 *
 * An example of this use is when a client creates unique build configuration IDs,
 * derived from default configruations, and all existing projects need to know about
 * all possible build configurations at eclipse startup.
 */
public interface IManagedBuildDefinitionsStartup {

	String BUILD_DEFINITION_STARTUP = "buildDefinitionStartup"; //$NON-NLS-1$
	String CLASS_ATTRIBUTE = "class"; //$NON-NLS-1$

	/**
	 * Any work you want to do on build definitions after they have been loaded but before they have been resolved.
	 */
	void buildDefsLoaded();

	/**
	 * Any work you want to do on build definitions after they have been resolved.
	 */
	void buildDefsResolved();
}

Back to the top