Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ebd7049afcae7546d26c981d53f8a99f31447366 (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
/**********************************************************************
 * 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: 
 * Based on org.eclipse.debug.core.ILaunchConfigurationListener
 * Timesys - Initial API and implementation
 **********************************************************************/

package org.eclipse.cdt.core.builder.model;

/**
 * A build configuration listener is notified of build
 * configurations as they are added and removed from the
 * build configuration manager.
 * <p>
 * Clients may implement this interface.
 */
public interface ICBuildConfigListener {

	/**
	 * Notifies this listener that the specified
	 * configuration has been removed.
	 *
	 * @param configuration the removed configuration
	 */
	public void configurationRemoved(ICBuildConfig configuration);

	/**
	 * Notifies this listener that the specified configuration
	 * has been added.
	 * 
	 * @param configuration the newly added configuration
	 */
	public void configurationAdded(ICBuildConfig configuration);

	/**
	 * Notifies this listener that the specified configuration
	 * has changed.
	 * 
	 * @param configuration the changed configuration
	 */
	public void configurationChanged(ICBuildConfig configuration);
}

Back to the top