The SequenceDef
interface represents an IDL sequence definition.
module CORBA { interface SequenceDef : IDLType { attribute unsigned long <bound>; readonly attribute TypeCode <element_type>; attribute IDLType <element_type_def>; }; };
This is the bound of the sequence where 0 indicates an unbounded sequence type.
attribute unsigned long <bound>;
This operation describes the type of the element contained within this sequence. The <element_type>
attribute contains the same information.
readonly attribute TypeCode <element_type>;
This operation describes the type of element contained within the sequence. The <element_type_def>
attribute contains the same information.
attribute IDLType <element_type_def>;
The type
attribute is inherited from the IDLType
interface. It is a tk_sequence TypeCode
that describes the sequence.
readonly attribute TypeCode <type>;
SequenceDef::element_type_def
SequenceDef::bound