dcb
2025-06-18 4c4d0f591f94428ed7e5d2f4ae5df5c5087d8c26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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;
    }
}