FileDocCategorySizeDatePackage
UnionMember.javaAPI DocJava SE 5 API2241Fri Aug 26 14:58:32 BST 2005org.omg.CORBA

UnionMember

public final class UnionMember extends Object implements org.omg.CORBA.portable.IDLEntity
A description in the Interface Repository of a member of an IDL union.

Fields Summary
public String
name
The name of the union member described by this UnionMember object.
public org.omg.CORBA.Any
label
The label of the union member described by this UnionMember object.
public org.omg.CORBA.TypeCode
type
The type of the union member described by this UnionMember object.
public org.omg.CORBA.IDLType
type_def
The typedef that represents the IDL type of the union member described by this UnionMember object.
Constructors Summary
public UnionMember()
Constructs a new UnionMember object with its fields initialized to null.

 
public UnionMember(String __name, org.omg.CORBA.Any __label, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def)
Constructs a new UnionMember object with its fields initialized to the given values.

param
__name a String object with the name of this UnionMember object
param
__label an Any object with the label of this UnionMember object
param
__type a TypeCode object describing the type of this UnionMember object
param
__type_def an IDLType object that represents the IDL type of this UnionMember object

	name = __name;
	label = __label;
	type = __type;
	type_def = __type_def;
    
Methods Summary