All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ats.tools.report.models.Bound Maven / Gradle / Ivy

The newest version!
package com.ats.tools.report.models;

public class Bound {
    private int x;
    private int y;
    private int width;
    private int height;

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }

    public int getWidth() {
        return width;
    }

    public void setWidth(int width) {
        this.width = width;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }

    @Override
    public String toString() {
        return "Bound{" +
                "x=" + x +
                ", y=" + y +
                ", width=" + width +
                ", height=" + height +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy