
/**
* ShapeHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from Shape.idl
* lunedì 22 ottobre 2018 11.37.55 CEST
*/

public final class ShapeHolder implements org.omg.CORBA.portable.Streamable
{
  public Shape value = null;

  public ShapeHolder ()
  {
  }

  public ShapeHolder (Shape initialValue)
  {
    value = initialValue;
  }

  public void _read (org.omg.CORBA.portable.InputStream i)
  {
    value = ShapeHelper.read (i);
  }

  public void _write (org.omg.CORBA.portable.OutputStream o)
  {
    ShapeHelper.write (o, value);
  }

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

}
