Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b4cba83fc2152b67b474e8f067c4bd5b5a719906 (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) 2005, 2010 Intel 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:
 * Intel Corporation - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.managedbuilder.macros;

import org.eclipse.cdt.core.cdtvariables.ICdtVariableStatus;

/**
 * This interface represents the status of a build macro operation 
 * 
 * @since 3.0
 * @noextend This class is not intended to be subclassed by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 */
public interface IBuildMacroStatus extends ICdtVariableStatus {
	
	/**
	 * returns the context type used in the operation
	 * @return int
	 */
	public int getContextType();
	
	/**
	 * returns the context data used in the operation
	 * @return Object
	 */
	public Object getContextData();
	
	public String getMacroName();
	
}

Back to the top