LowCodeMergeOptions

LowCodeMergeOptions class

Options for merging multiple template files into one.

class LowCodeMergeOptions;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
getSaveOptions()Save options for saving the split parts.
setSaveOptions(LowCodeSaveOptions)Save options for saving the split parts.
getLoadOptionsProvider()Provider of save options for saving the split parts.
setLoadOptionsProvider(AbstractLowCodeLoadOptionsProvider)Provider of save options for saving the split parts.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

getSaveOptions()

Save options for saving the split parts.

getSaveOptions() : LowCodeSaveOptions;

Returns

LowCodeSaveOptions

setSaveOptions(LowCodeSaveOptions)

Save options for saving the split parts.

setSaveOptions(value: LowCodeSaveOptions) : void;

Parameters:

ParameterTypeDescription
valueLowCodeSaveOptionsThe value to set.

getLoadOptionsProvider()

Provider of save options for saving the split parts.

getLoadOptionsProvider() : AbstractLowCodeLoadOptionsProvider;

Returns

AbstractLowCodeLoadOptionsProvider

Remarks

If this property is specified, LoadOptions takes no effect because the output of every split part will be specified by the provider.

setLoadOptionsProvider(AbstractLowCodeLoadOptionsProvider)

Provider of save options for saving the split parts.

setLoadOptionsProvider(value: AbstractLowCodeLoadOptionsProvider) : void;

Parameters:

ParameterTypeDescription
valueAbstractLowCodeLoadOptionsProviderThe value to set.

Remarks

If this property is specified, LoadOptions takes no effect because the output of every split part will be specified by the provider.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;