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 thisStructMemberobject.The type of the struct member described by thisStructMemberobject.The typedef that represents the IDL type of the struct member described by thisStructMemberobject. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a defaultStructMemberobject.StructMember(String __name, TypeCode __type, IDLType __type_def) Constructs aStructMemberobject initialized with the given values. -
Method Summary
-
Field Details
-
name
The name of the struct member described by thisStructMemberobject. -
type
The type of the struct member described by thisStructMemberobject. -
type_def
The typedef that represents the IDL type of the struct member described by thisStructMemberobject.
-
-
Constructor Details
-
StructMember
public StructMember()Constructs a defaultStructMemberobject. -
StructMember
Constructs aStructMemberobject initialized with the given values.- Parameters:
__name- aStringobject with the name of the struct member__type- aTypeCodeobject describing the type of the struct member__type_def- anIDLTypeobject representing the IDL type of the struct member
-