builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/project/IBuildArgumentsInfo.java
author timkelly
Tue, 03 Aug 2010 11:44:01 -0500
branchC3_BUILDER_WORK
changeset 1749 0d2e2c9062b1
parent 109 2a4136280275
permissions -rw-r--r--
Simplify APIs around error parser ids/arrays. Clarify some comments in API after review with David.

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/
package com.nokia.carbide.cdt.builder.project;

/**
 * IBuildArgumentsInfo represents one instance of configuration data for the Arguments tab.
 * This interface only applies for the Symbian 'abld' build system (SBSv1)
 * @see ICarbideBuildConfiguration
 * 
 * @deprecated - ABLD specific implementation. ABLD will be removed in a future Carbide 3.x release.
 * @noimplement This interface is not intended to be implemented by clients.
 */
public interface IBuildArgumentsInfo {
	
	/**
	 * Get the arguments to pass to bldmake bldfiles
	 * @return string of arguments which may be empty
	 */
	String getBldmakeBldFilesArgs();
	
	/**
	 * Get the arguments to pass to bldmake clean
	 * @return string of arguments which may be empty
	 */
	String getBldmakeCleanArgs();

	/**
	 * Get the arguments to pass to abld build
	 * @return string of arguments which may be empty
	 */
	String getAbldBuildArgs();

	/**
	 * Get the arguments to pass to abld export
	 * @return string of arguments which may be empty
	 */
	String getAbldExportArgs();

	/**
	 * Get the arguments to pass to abld makefile
	 * @return string of arguments which may be empty
	 */
	String getAbldMakefileArgs();

	/**
	 * Get the arguments to pass to abld library
	 * @return string of arguments which may be empty
	 */
	String getAbldLibraryArgs();

	/**
	 * Get the arguments to pass to abld resource
	 * @return string of arguments which may be empty
	 */
	String getAbldResourceArgs();

	/**
	 * Get the arguments to pass to abld target
	 * @return string of arguments which may be empty
	 */
	String getAbldTargetArgs();

	/**
	 * Get the arguments to pass to abld final
	 * @return string of arguments which may be empty
	 */
	String getAbldFinalArgs();

	/**
	 * Get the arguments to pass to abld clean
	 * @return string of arguments which may be empty
	 */
	String getAbldCleanArgs();

	/**
	 * Get the arguments to pass to abld freeze
	 * @return string of arguments which may be empty
	 */
	String getAbldFreezeArgs();
}