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
44
45
46
47
48
49
50
| package com.northglass.entity;
|
| public class Cutting {
|
| private int startX;
| private int startY;
| private int endX;
| private int endY;
|
| public Cutting() { }
|
| public Cutting(int startX, int startY, int endX, int endY) {
| this.startX = startX;
| this.startY = startY;
| this.endX = endX;
| this.endY = endY;
| }
|
| public int getStartX() {
| return startX;
| }
|
| public void setStartX(int startX) {
| this.startX = startX;
| }
|
| public int getStartY() {
| return startY;
| }
|
| public void setStartY(int startY) {
| this.startY = startY;
| }
|
| public int getEndX() {
| return endX;
| }
|
| public void setEndX(int endX) {
| this.endX = endX;
| }
|
| public int getEndY() {
| return endY;
| }
|
| public void setEndY(int endY) {
| this.endY = endY;
| }
| }
|
|