Carbide.c++

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

All Superinterfaces:
IData<IImageMakefileView>
All Known Subinterfaces:
IImageMakefileView

public interface IImageMakefileData
extends IData<IImageMakefileView>

This is the interface to reading image Makefile contents. It is read-only.


Method Summary
 java.lang.String getDefaultImageTarget()
          Get the default target under which to add new mifconv commands.
 IMakefile getMakefile()
          Get CDT representation of makefile, with read-only access.
 java.util.List<IMultiImageSource> getMultiImageSources()
          Read the multi-image sources built in the Makefile (e.g., one per call to mifconv).
 
Methods inherited from interface com.nokia.carbide.cpp.epoc.engine.model.IData
getModelPath, getProjectPath, getReferencedFiles
 

Method Detail

getMakefile

IMakefile getMakefile()
Get CDT representation of makefile, with read-only access.


getMultiImageSources

java.util.List<IMultiImageSource> getMultiImageSources()
Read the multi-image sources built in the Makefile (e.g., one per call to mifconv).


getDefaultImageTarget

java.lang.String getDefaultImageTarget()
Get the default target under which to add new mifconv commands. If null, the filename of a multi-image source itself is the default target.

Returns:
target name, or null

Carbide.c++