Package com.zerog.ia.api.pub
Interface BuildTargetSettings
-
public interface BuildTargetSettings
BuildTargetSettings provides the project build target settings.
An instance of
BuildTargetSettings
is provided calling theCustomBuildServices.getBuildTargetSettings()
method.- See Also:
com.zerog.ia.api.pub.CustomCodeAction#build(CustomBuildServices)
,CustomBuildServices.getBuildTargetSettings()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBundledVM()
Returns the bundling virtual machine name.java.lang.String
getName()
Returns the target platform name.java.lang.String
getOutputDir()
Returns the target output path relative to the build output path.boolean
isNoVM()
Tells whether or not this target should build an installer without bundle virtual machine.boolean
isWithVM()
Tells whether or not this target should build an installer with bundle virtual machine.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the target platform name.
- Returns:
- Platform name
-
isNoVM
boolean isNoVM()
Tells whether or not this target should build an installer without bundle virtual machine.
- Returns:
- Build installer with no VM
-
isWithVM
boolean isWithVM()
Tells whether or not this target should build an installer with bundle virtual machine.
- Returns:
- Build installer with VM
-
getBundledVM
java.lang.String getBundledVM()
Returns the bundling virtual machine name.
- Returns:
- Virtual machine name
- See Also:
isWithVM()
-
getOutputDir
java.lang.String getOutputDir()
Returns the target output path relative to the build output path.
- Returns:
- Target output path
- See Also:
BuildDistributionSettings.getBuildOutputPath()
-
-