001    package org.omg.CORBA;
002    public final class WStringValueHolder
003            implements org.omg.CORBA.portable.Streamable
004    {
005            public java.lang.String value;
006    
007            public WStringValueHolder ()
008            {
009            }
010            public WStringValueHolder (final java.lang.String initial)
011            {
012                    value = initial;
013            }
014            public org.omg.CORBA.TypeCode _type ()
015            {
016                    return org.omg.CORBA.WStringValueHelper.type ();
017            }
018            public void _read (final org.omg.CORBA.portable.InputStream _in)
019            {
020                    value = org.omg.CORBA.WStringValueHelper.read (_in);
021            }
022            public void _write (final org.omg.CORBA.portable.OutputStream _out)
023            {
024                    org.omg.CORBA.WStringValueHelper.write (_out,value);
025            }
026    }