StructMemberpublic final class StructMember extends Object implements org.omg.CORBA.portable.IDLEntityDescribes 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. |
Fields Summary |
---|
public String | nameThe name of the struct member described by
this StructMember object. | public org.omg.CORBA.TypeCode | typeThe type of the struct member described by
this StructMember object. | public org.omg.CORBA.IDLType | type_defThe typedef that represents the IDL type of the struct member described by
this StructMember object. |
Constructors Summary |
---|
public StructMember()Constructs a default StructMember object.
| public StructMember(String __name, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def)Constructs a StructMember object initialized with the
given values.
name = __name;
type = __type;
type_def = __type_def;
|
|