LowCodeMergeOptions
LowCodeMergeOptions class
Options for merging multiple template files into one.
class LowCodeMergeOptions;
Constructors
Constructor | Description |
---|---|
constructor() | Default Constructor. |
Properties
Property | Type | Description |
---|---|---|
saveOptions | LowCodeSaveOptions | Save options for saving the split parts. |
loadOptionsProvider | AbstractLowCodeLoadOptionsProvider | Provider of save options for saving the split parts. |
Methods
Method | Description |
---|---|
getSaveOptions() | @deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts. |
setSaveOptions(LowCodeSaveOptions) | @deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts. |
getLoadOptionsProvider() | @deprecated. Please use the ’loadOptionsProvider’ property instead. Provider of save options for saving the split parts. |
setLoadOptionsProvider(AbstractLowCodeLoadOptionsProvider) | @deprecated. Please use the ’loadOptionsProvider’ property instead. Provider of save options for saving the split parts. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
saveOptions
Save options for saving the split parts.
saveOptions : LowCodeSaveOptions;
loadOptionsProvider
Provider of save options for saving the split parts.
loadOptionsProvider : AbstractLowCodeLoadOptionsProvider;
Remarks
If this property is specified, LoadOptions takes no effect because the output of every split part will be specified by the provider.
getSaveOptions()
@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.
getSaveOptions() : LowCodeSaveOptions;
Returns
setSaveOptions(LowCodeSaveOptions)
@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.
setSaveOptions(value: LowCodeSaveOptions) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | LowCodeSaveOptions | The value to set. |
getLoadOptionsProvider()
@deprecated. Please use the ’loadOptionsProvider’ property instead. 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)
@deprecated. Please use the ’loadOptionsProvider’ property instead. Provider of save options for saving the split parts.
setLoadOptionsProvider(value: AbstractLowCodeLoadOptionsProvider) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | AbstractLowCodeLoadOptionsProvider | The 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;