
/**
* Rectangle.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 Rectangle implements org.omg.CORBA.portable.IDLEntity
{
  public int width = (int)0;
  public int height = (int)0;
  public int x = (int)0;
  public int y = (int)0;

  public Rectangle ()
  {
  } // ctor

  public Rectangle (int _width, int _height, int _x, int _y)
  {
    width = _width;
    height = _height;
    x = _x;
    y = _y;
  } // ctor

} // class Rectangle
