it.tidalwave.java.awt.Rectangle Maven / Gradle / Ivy
/***********************************************************************************************************************
* To change this template, choose Tools | Templates
* and open the template in the editor.
**********************************************************************************************************************/
package it.tidalwave.java.awt;
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
* @version $Id: $
*
**********************************************************************************************************************/
public class Rectangle
{
public int x;
public int y;
public int width;
public int height;
public Rectangle()
{
throw new RuntimeException("Stub!");
}
public Rectangle (Rectangle rectangle)
{
throw new RuntimeException("Stub!");
}
public Rectangle (int x, int y, int w, int h)
{
throw new RuntimeException("Stub!");
}
}