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

eu.clarussecure.dataoperations.splitting.SplitPoint Maven / Gradle / Ivy

The newest version!
package eu.clarussecure.dataoperations.splitting;

import java.io.Serializable;

/**
 * Created by Alberto Blanco on 28/04/2017.
 */
public class SplitPoint implements Serializable {

    private static final long serialVersionUID = 1L;

    private int x;
    private int y;

    public SplitPoint() {
        this.x = 0;
        this.y = 0;
    }

    public SplitPoint(int x, int y) {
        this.x = x;
        this.y = y;
    }

    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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy