- java.lang.Object
-
- org.omg.CORBA.UnionMember
-
- All Implemented Interfaces:
Serializable,IDLEntity
public final class UnionMember extends Object implements IDLEntity
A description in the Interface Repository of a member of an IDL union.
-
-
Field Summary
Fields Modifier and Type Field Description AnylabelThe label of the union member described by thisUnionMemberobject.StringnameThe name of the union member described by thisUnionMemberobject.TypeCodetypeThe type of the union member described by thisUnionMemberobject.IDLTypetype_defThe typedef that represents the IDL type of the union member described by thisUnionMemberobject.
-
Constructor Summary
Constructors Constructor Description UnionMember()Constructs a newUnionMemberobject with its fields initialized to null.UnionMember(String __name, Any __label, TypeCode __type, IDLType __type_def)Constructs a newUnionMemberobject with its fields initialized to the given values.
-
-
-
Field Detail
-
name
public String name
The name of the union member described by thisUnionMemberobject.
-
label
public Any label
The label of the union member described by thisUnionMemberobject.
-
type
public TypeCode type
The type of the union member described by thisUnionMemberobject.
-
type_def
public IDLType type_def
The typedef that represents the IDL type of the union member described by thisUnionMemberobject.
-
-
Constructor Detail
-
UnionMember
public UnionMember()
Constructs a newUnionMemberobject with its fields initialized to null.
-
UnionMember
public UnionMember(String __name, Any __label, TypeCode __type, IDLType __type_def)
Constructs a newUnionMemberobject with its fields initialized to the given values.- Parameters:
__name- aStringobject with the name of thisUnionMemberobject__label- anAnyobject with the label of thisUnionMemberobject__type- aTypeCodeobject describing the type of thisUnionMemberobject__type_def- anIDLTypeobject that represents the IDL type of thisUnionMemberobject
-
-