001 package org.omg.CORBA;
002
003 /**
004 * Generated from IDL struct "ConstantDescription".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Nov 6, 2011 12:20:22 AM
008 */
009
010 public final class ConstantDescriptionHolder
011 implements org.omg.CORBA.portable.Streamable
012 {
013 public org.omg.CORBA.ConstantDescription value;
014
015 public ConstantDescriptionHolder ()
016 {
017 }
018 public ConstantDescriptionHolder(final org.omg.CORBA.ConstantDescription initial)
019 {
020 value = initial;
021 }
022 public org.omg.CORBA.TypeCode _type ()
023 {
024 return org.omg.CORBA.ConstantDescriptionHelper.type ();
025 }
026 public void _read(final org.omg.CORBA.portable.InputStream _in)
027 {
028 value = org.omg.CORBA.ConstantDescriptionHelper.read(_in);
029 }
030 public void _write(final org.omg.CORBA.portable.OutputStream _out)
031 {
032 org.omg.CORBA.ConstantDescriptionHelper.write(_out, value);
033 }
034 }