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

io.takari.bpm.model.diagram.Bounds Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.takari.bpm.model.diagram;

import java.io.Serializable;

public class Bounds implements Serializable {

    private static final long serialVersionUID = 1L;

    private final double x;
    private final double y;
    private final double height;
    private final double width;

    public Bounds(double x, double y, double width, double height) {
        this.x = x;
        this.y = y;
        this.height = height;
        this.width = width;
    }

    public double getHeight() {
        return height;
    }

    public double getWidth() {
        return width;
    }

    public double getX() {
        return x;
    }

    public double getY() {
        return y;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy