
/**
* RectangleHolder.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 RectangleHolder implements org.omg.CORBA.portable.Streamable
{
  public Rectangle value = null;

  public RectangleHolder ()
  {
  }

  public RectangleHolder (Rectangle initialValue)
  {
    value = initialValue;
  }

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

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

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

}
