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
| package com.se.nsl.domain.dto;
|
| @SuppressWarnings("ALL")
| public class PointDto implements Comparable<PointDto> {
| private double x;
|
| private double y;
|
| private double val;
|
| PointDto() {
| }
|
| public PointDto(double x, double y, double val) {
| this.x = x;
| this.y = y;
| this.val = val;
| }
|
| 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 getVal() {
| return val;
| }
|
| public void setVal(double val) {
| this.val = val;
| }
|
| @Override
| public int compareTo(PointDto other) {
| return Double.compare(this.getVal(), other.getVal());
| }
| }
|
|