Package org.omg.CORBA
Class UnionMember
java.lang.Object
org.omg.CORBA.UnionMember
- All Implemented Interfaces:
Serializable
,IDLEntity
A description in the Interface Repository of a member of an IDL union.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe label of the union member described by thisUnionMember
object.The name of the union member described by thisUnionMember
object.The type of the union member described by thisUnionMember
object.The typedef that represents the IDL type of the union member described by thisUnionMember
object. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newUnionMember
object with its fields initialized to null.UnionMember
(String __name, Any __label, TypeCode __type, IDLType __type_def) Constructs a newUnionMember
object with its fields initialized to the given values. -
Method Summary
-
Field Details
-
name
The name of the union member described by thisUnionMember
object. -
label
The label of the union member described by thisUnionMember
object. -
type
The type of the union member described by thisUnionMember
object. -
type_def
The typedef that represents the IDL type of the union member described by thisUnionMember
object.
-
-
Constructor Details
-
UnionMember
public UnionMember()Constructs a newUnionMember
object with its fields initialized to null. -
UnionMember
Constructs a newUnionMember
object with its fields initialized to the given values.- Parameters:
__name
- aString
object with the name of thisUnionMember
object__label
- anAny
object with the label of thisUnionMember
object__type
- aTypeCode
object describing the type of thisUnionMember
object__type_def
- anIDLType
object that represents the IDL type of thisUnionMember
object
-