LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
global class SelectOption {
    global SelectOption(String value, String label, Boolean disabled) { }
    global SelectOption(String value, String label) { }
    /**
     * True if the SelectOption is disabled
     */
    global Boolean getDisabled() { }
    /**
     * True if the SelectOption label should be escaped
     */
    global Boolean getEscapeItem() { }
    /**
     * The label for this SelectOption
     */
    global String getLabel() { }
    /**
     * The value for this SelectOption
     */
    global String getValue() { }
    /**
     * Set the disabled value for this SelectOption
     */
    global void setDisabled(Boolean disabled) { }
    /**
     * Set the escapeItem value for this SelectOption
     */
    global void setEscapeItem(Boolean disabled) { }
    /**
     * Set the label for this SelectOption
     */
    global void setLabel(String label) { }
    /**
     * Set the value for this SelectOption
     */
    global void setValue(String value) { }
 
}