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