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

com.openfin.desktop.WindowBounds Maven / Gradle / Ivy

There is a newer version: 11.0.2
Show newest version
package com.openfin.desktop;

/**
 * Window bounds.
 */
public class WindowBounds {

    private Integer top, left, width, height;

    public WindowBounds(Integer top, Integer left, Integer width, Integer height) {
        this.top = top;
        this.left = left;
        this.width = width;
        this.height = height;
    }

    public Integer getTop() {
        return top;
    }

    public void setTop(Integer top) {
        this.top = top;
    }

    public Integer getLeft() {
        return left;
    }

    public void setLeft(Integer left) {
        this.left = left;
    }

    public Integer getWidth() {
        return width;
    }

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

    public Integer getHeight() {
        return height;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy