/* * File: ./SimpleHelloWorld/GoodDayHolder.java * From: SimpleHelloWorld.idl * Date: Tue Jan 18 17:04:03 2000 * By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18 */ package SimpleHelloWorld; public final class GoodDayHolder implements org.omg.CORBA.portable.Streamable{ // instance variable public SimpleHelloWorld.GoodDay value; // constructors public GoodDayHolder() { this(null); } public GoodDayHolder(SimpleHelloWorld.GoodDay __arg) { value = __arg; } public void _write(org.omg.CORBA.portable.OutputStream out) { SimpleHelloWorld.GoodDayHelper.write(out, value); } public void _read(org.omg.CORBA.portable.InputStream in) { value = SimpleHelloWorld.GoodDayHelper.read(in); } public org.omg.CORBA.TypeCode _type() { return SimpleHelloWorld.GoodDayHelper.type(); } }