mac
2024-10-31 e1577f14dc7ac4fe8b8df851e63ae7e3aebf72a7
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;
    }
}