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