Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8e8b9d3f7db8e66a6def2cd595faed2f906a1036 (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
/*******************************************************************************
 * Copyright (c) 2015 QNX Software Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package org.eclipse.cdt.core.build;

/**
 * A type of toolchain.
 * 
 * @since 6.0
 */
public interface IToolChainType {

	String getId();

	/**
	 * Called by the toolchain to inflate the toolchain from the user preference
	 * store.
	 * 
	 * @param name
	 *            the name of the toolchain
	 * @param properties
	 *            the persisted settings for the toolchain
	 * @return the toolchain initialized with the settings.
	 */
	IToolChain getToolChain(String name);

}

Back to the top