001    package org.omg.CSI;
002    
003    
004    /**
005    * org/omg/CSI/UTF8StringHolder.java .
006    * Generated by the IDL-to-Java compiler (portable), version "3.2"
007    * from /builddir/build/BUILD/geronimo-specs-1.6/geronimo-spec-corba/src/main/idl/CSI.idl
008    * Monday, June 18, 2012 10:36:14 AM CEST
009    */
010    
011    
012    // UTF-8 Encoding of String
013    public final class UTF8StringHolder implements org.omg.CORBA.portable.Streamable
014    {
015      public byte value[] = null;
016    
017      public UTF8StringHolder ()
018      {
019      }
020    
021      public UTF8StringHolder (byte[] initialValue)
022      {
023        value = initialValue;
024      }
025    
026      public void _read (org.omg.CORBA.portable.InputStream i)
027      {
028        value = org.omg.CSI.UTF8StringHelper.read (i);
029      }
030    
031      public void _write (org.omg.CORBA.portable.OutputStream o)
032      {
033        org.omg.CSI.UTF8StringHelper.write (o, value);
034      }
035    
036      public org.omg.CORBA.TypeCode _type ()
037      {
038        return org.omg.CSI.UTF8StringHelper.type ();
039      }
040    
041    }