Carbide.c++

com.nokia.carbide.cpp.epoc.engine.model.makefile.image
Interface IImageBuilderCommandLineConverter


public interface IImageBuilderCommandLineConverter

Implement this interface to parse or create a command line.


Method Summary
 java.util.List<java.lang.String> create(IImageMakefileView view, IMultiImageSource container, java.util.List<java.lang.String> origArgv)
          Create a command line from the given multi-image source.
 IMultiImageSource parse(IImageMakefileView view, java.util.List<java.lang.String> argv)
          Parse the given command line and create a multi-image source, or null if errors encountered.
 

Method Detail

parse

IMultiImageSource parse(IImageMakefileView view,
                        java.util.List<java.lang.String> argv)
Parse the given command line and create a multi-image source, or null if errors encountered.

Parameters:
view -
argv -
Returns:

create

java.util.List<java.lang.String> create(IImageMakefileView view,
                                        IMultiImageSource container,
                                        java.util.List<java.lang.String> origArgv)
Create a command line from the given multi-image source.

Parameters:
view -
container -
origArgv - original arguments if updating command line
Returns:

Carbide.c++