package com.chemhack.jsMolEditor.client.jre.emulation.java.awt.geom; public class Rectangle2D { public double x; public double y; public double width; public double height; public Rectangle2D(double x, double y, double width, double height) { this.x = x; this.y = y; this.width = width; this.height = height; } public double getX() { return x; } public void setX(double x) { this.x = x; } public double getY() { return y; } public void setY(double y) { this.y = y; } public double getWidth() { return width; } public void setWidth(double width) { this.width = width; } public double getHeight() { return height; } public void setHeight(double height) { this.height = height; } }