wjc
2025-03-25 579da4e0056080c878ed4d0a479a631db9610ee1
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
class AACredits {
    public Boolean enabled;
    public String href;
    public AAPosition position;
    public AAStyle style;
    public String text;
 
    public AACredits enabled(boolean prop) {
        enabled = prop;
        return this;
    }
 
    public AACredits href(String prop) {
        href = prop;
        return this;
    }
 
    public AACredits position(AAPosition prop) {
        position = prop;
        return this;
    }
 
    public AACredits style(AAStyle prop) {
        style = prop;
        return this;
    }
 
    public AACredits text(String prop) {
        text = prop;
        return this;
    }
}