hxb
2022-11-22 b3513b1713bb979d0a69c5a8c4ddcd038f184e6e
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
package com.mm.android.deviceaddmodule.mobilecommon.widget.linechart.data;
 
public class Entry {
 
    double x;
    double y;
 
    boolean isNull_Y = false;
 
    public Entry(double x, double y) {
        this.x = x;
        this.y = y;
    }
 
 
    public double getX() {
        return x;
    }
 
    public Entry setX(double x) {
        this.x = x;
        return this;
    }
 
    public double getY() {
        return y;
    }
 
    public Entry setY(double y) {
        this.y = y;
        return this;
    }
 
    public boolean isNull_Y() {
        return isNull_Y;
    }
 
    public Entry setNull_Y() {
        isNull_Y = true;
        return this;
    }
 
    @Override
    public String toString() {
        return "entry x:" + x + " y:" + y;
    }
}