mac
2024-10-25 9c67fc611daf6f9cb7c05f72d598543bff2d26f1
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AASelect {
    public Boolean enabled;
    public String borderColor;
    public String color;
    public AAHalo halo;
 
    public AASelect enabled(Boolean prop) {
        enabled = prop;
        return this;
    }
 
    public AASelect borderColor(String prop) {
        borderColor = prop;
        return this;
    }
 
    public AASelect color(String prop) {
        color = prop;
        return this;
    }
 
    public  AASelect halo(AAHalo prop) {
        halo = prop;
        return this;
    }
}