TDADeltaStructList
Overview
The TDADeltaStructList represents a list of TDADeltaStructs.
This class is used internally for storing TDADeltaStructs that contain deltas, which will be processed by the TDABusinessProcessor.
Location
- Unit: uDABusinessProcessor.pas
- Ancestry: TObjectList<TDADeltaStruct> | TDADeltaStructList
Properties
DeltaStructs
Provides direct access to a TDADeltaStruct in the list.
property DeltaStructs[Index: Integer]: TDADeltaStruct read
Instance Methods
Add
Creates a TDADeltaStruct based on the IDADelta and the TDABusinessProcessor.
function Add(const aDelta: IDADelta; aBusinessProcessor: TDABusinessProcessor): TDADeltaStruct
Parameters:
- aDelta: Delta
- aBusinessProcessor: Business processor.
FindStruct
Returns a TDADeltaStruct with the specified logical name.
function FindStruct(const aLogicalName: string): TDADeltaStruct
Parameters:
- aLogicalName: the specified logical name.
StructByLogicalName
Returns a TDADeltaStruct with the specified logical name and raises an exception if it isn't found.
function StructByLogicalName(const aLogicalName: string): TDADeltaStruct
Parameters:
- aLogicalName: the specified logical name.