001    package org.omg.CORBA;
002    
003    /**
004     * Generated from IDL struct "UnionMember".
005     *
006     * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007     * @version generated at Sep 22, 2012 10:58:05 AM
008     */
009    
010    public final class UnionMember
011            implements org.omg.CORBA.portable.IDLEntity
012    {
013            public UnionMember(){}
014            public java.lang.String name;
015            public org.omg.CORBA.Any label;
016            public org.omg.CORBA.TypeCode type;
017            public org.omg.CORBA.IDLType type_def;
018            public UnionMember(java.lang.String name, org.omg.CORBA.Any label, org.omg.CORBA.TypeCode type, org.omg.CORBA.IDLType type_def)
019            {
020                    this.name = name;
021                    this.label = label;
022                    this.type = type;
023                    this.type_def = type_def;
024            }
025    }