package com.se.nsl.domain.dto; @SuppressWarnings("ALL") public class XYO { private int x; private int y; private int offset; public XYO() { } public XYO(int x, int y, int width) { this.x = x; this.y = y; this.offset = x + y * width; } 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 getOffset() { return offset; } public void setOffset(int offset) { this.offset = offset; } }