package helloWorld;

/**
 * <ul>
 * <li> <b>IDL Source</b>    "HelloWorld.idl"
 * <li> <b>IDL Name</b>      ::helloWorld::GoodDay
 * <li> <b>Repository Id</b> IDL:helloWorld/GoodDay:1.0
 * </ul>
 * <b>IDL definition:</b>
 * <pre>
 * interface GoodDay {
  ...
};
 * </pre>
 */
public final class GoodDayHolder implements org.omg.CORBA.portable.Streamable {
  public helloWorld.GoodDay value;

  public GoodDayHolder () {
  }

  public GoodDayHolder (final helloWorld.GoodDay _vis_value) {
    this.value = _vis_value;
  }

  public void _read (final org.omg.CORBA.portable.InputStream input) {
    value = helloWorld.GoodDayHelper.read(input);
  }

  public void _write (final org.omg.CORBA.portable.OutputStream output) {
    helloWorld.GoodDayHelper.write(output, value);
  }

  public org.omg.CORBA.TypeCode _type () {
    return helloWorld.GoodDayHelper.type();
  }
}
