Package org.omg.CORBA
Class StructMember
java.lang.Object
org.omg.CORBA.StructMember
- All Implemented Interfaces:
Serializable
,IDLEntity
Describes a member of an IDL
struct
in the
Interface Repository, including
the name of the struct
member, the type of
the struct
member, and
the typedef that represents the IDL type of the
struct
member
described the struct
member object.-
Field Summary
FieldsModifier and TypeFieldDescriptionThe name of the struct member described by thisStructMember
object.The type of the struct member described by thisStructMember
object.The typedef that represents the IDL type of the struct member described by thisStructMember
object. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a defaultStructMember
object.StructMember
(String __name, TypeCode __type, IDLType __type_def) Constructs aStructMember
object initialized with the given values. -
Method Summary
-
Field Details
-
name
The name of the struct member described by thisStructMember
object. -
type
The type of the struct member described by thisStructMember
object. -
type_def
The typedef that represents the IDL type of the struct member described by thisStructMember
object.
-
-
Constructor Details
-
StructMember
public StructMember()Constructs a defaultStructMember
object. -
StructMember
Constructs aStructMember
object initialized with the given values.- Parameters:
__name
- aString
object with the name of the struct member__type
- aTypeCode
object describing the type of the struct member__type_def
- anIDLType
object representing the IDL type of the struct member
-