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

org.ikasan.designer.model.PositionedItem Maven / Gradle / Ivy

package org.ikasan.designer.model;

public abstract class PositionedItem extends Item {
    protected double x;
    protected double y;
    protected double width;
    protected double 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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy