3 package gnu.classpath.examples.CORBA.SimpleCommunication.communication;
5 import org.omg.CORBA.portable.InputStream;
6 import org.omg.CORBA.portable.OutputStream;
7 import org.omg.CORBA.portable.Streamable;
9 public final class passThisHolder
12 public passThis value;
14 public passThisHolder()
18 public passThisHolder(passThis initialValue)
23 public void _read(InputStream i)
25 value = passThisHelper.read(i);
28 public org.omg.CORBA.TypeCode _type()
30 return passThisHelper.type();
33 public void _write(OutputStream o)
35 passThisHelper.write(o, value);