- java.lang.Object
-
- org.omg.CORBA.StructMember
-
- All Implemented Interfaces:
Serializable
,IDLEntity
public final class StructMember extends Object implements IDLEntity
Describes a member of an IDLstruct
in the Interface Repository, including the name of thestruct
member, the type of thestruct
member, and the typedef that represents the IDL type of thestruct
member described thestruct
member object.
-
-
Field Summary
Fields Modifier and Type Field Description String
name
The name of the struct member described by thisStructMember
object.TypeCode
type
The type of the struct member described by thisStructMember
object.IDLType
type_def
The typedef that represents the IDL type of the struct member described by thisStructMember
object.
-
Constructor Summary
Constructors Constructor Description StructMember()
Constructs a defaultStructMember
object.StructMember(String __name, TypeCode __type, IDLType __type_def)
Constructs aStructMember
object initialized with the given values.
-
-
-
Field Detail
-
name
public String name
The name of the struct member described by thisStructMember
object.
-
type
public TypeCode type
The type of the struct member described by thisStructMember
object.
-
type_def
public IDLType type_def
The typedef that represents the IDL type of the struct member described by thisStructMember
object.
-
-
Constructor Detail
-
StructMember
public StructMember()
Constructs a defaultStructMember
object.
-
StructMember
public StructMember(String __name, TypeCode __type, IDLType __type_def)
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
-
-