ComplexType
Overview
ComplexType is the base class for all Struct types defined in your RODL library.
You will usually not instantiate instances of this class itself, but use the descendant classes that will be auto-generated in your _Intf source module for every struct defined in your RODL file.
Location
- Reference: com.remobjects.sdk.jar
- Package: com.remobjects.sdk
- Ancestry: Object | ComplexType
Instance Methods
constructor protected
Default constructor.
getAttributeValue
Returns attribute.
Parameters:
- aName: Given name.
readFromMessage
For internal use, used by the RO/J framework to stream the Struct to a message packet.
method readFromMessage(aName: String; aMessage: Message)
void readFromMessage(String aName, Message aMessage)
Parameters:
- aName: Given name.
- aMessage: Given message.
writeToMessage
For internal use, used by the RO/J framework to stream the Struct to a message packet.
method writeToMessage(aName: String; aMessage: Message)
void writeToMessage(String aName, Message aMessage)
Parameters:
- aName: Given name.
- aMessage: Given message.
- .NET
- Java