Class UnionMember
java.lang.Object
org.omg.CORBA.UnionMember
- All Implemented Interfaces:
Serializable, IDLEntity
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe label of the union member described by thisUnionMemberobject.The name of the union member described by thisUnionMemberobject.The type of the union member described by thisUnionMemberobject.The typedef that represents the IDL type of the union member described by thisUnionMemberobject. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs 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. -
Method Summary
-
Field Details
-
name
The name of the union member described by thisUnionMemberobject. -
label
The label of the union member described by thisUnionMemberobject. -
type
The type of the union member described by thisUnionMemberobject. -
type_def
The typedef that represents the IDL type of the union member described by thisUnionMemberobject.
-
-
Constructor Details
-
UnionMember
public UnionMember()Constructs a newUnionMemberobject with its fields initialized to null. -
UnionMember
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
-