org.eclipse.cdt.managedbuilder.buildmodel
Interface IBuildCommand

All Known Implementing Classes:
BuildCommand

public interface IBuildCommand

This interface represents a command to be invoked for building the step


Method Summary
 java.lang.String[] getArgs()
          Returns the array of arguments to be passed to the executable
 org.eclipse.core.runtime.IPath getCommand()
          returns the executable path the paths could be either relative or absolute
 org.eclipse.core.runtime.IPath getCWD()
          Returns the working directory to be used for the process
 java.util.Map getEnvironment()
          Returns the Map representing the environment to be used for the executable process The map conntains the String to String pairs representing the variable name and value respectively
 

Method Detail

getCommand

org.eclipse.core.runtime.IPath getCommand()
returns the executable path the paths could be either relative or absolute

Returns:
IPath

getArgs

java.lang.String[] getArgs()
Returns the array of arguments to be passed to the executable

Returns:
String[]

getEnvironment

java.util.Map getEnvironment()
Returns the Map representing the environment to be used for the executable process The map conntains the String to String pairs representing the variable name and value respectively

Returns:
Map

getCWD

org.eclipse.core.runtime.IPath getCWD()
Returns the working directory to be used for the process

Returns:
IPath