001    package tecgraf.openbus.DRMAA;
002    /**
003     * Generated from IDL enum "JobState".
004     *
005     * @author JacORB IDL compiler V 2.3-beta-2, 14-Oct-2006
006     * @version generated at Nov 3, 2010 2:32:40 PM
007     */
008    
009    public final class JobStateHolder
010            implements org.omg.CORBA.portable.Streamable
011    {
012            public JobState value;
013    
014            public JobStateHolder ()
015            {
016            }
017            public JobStateHolder (final JobState initial)
018            {
019                    value = initial;
020            }
021            public org.omg.CORBA.TypeCode _type ()
022            {
023                    return JobStateHelper.type ();
024            }
025            public void _read (final org.omg.CORBA.portable.InputStream in)
026            {
027                    value = JobStateHelper.read (in);
028            }
029            public void _write (final org.omg.CORBA.portable.OutputStream out)
030            {
031                    JobStateHelper.write (out,value);
032            }
033    }