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
global class StandardController {
    global StandardController(SObject sobject) { }
    /**
     * Add a reference to each field whose name is specified in list of strings so it is retrieved when the record is loaded by the controller.
     */
    global void addFields(List<String> fieldNames) { }
    /**
     * Cancel changes; returning returl
     */
    global System.PageReference cancel() { }
    /**
     * Delete a record
     */
    global System.PageReference delete() { }
    /**
     * Edit a record
     */
    global System.PageReference edit() { }
    /**
     * Get the ID for the subject record
     */
    global String getId() { }
    /**
     * Get the subject record
     */
    global SObject getRecord() { }
    /**
     * Save any modified or new records
     */
    global System.PageReference save() { }
    /**
     * Get View URL for a record
     */
    global System.PageReference view() { }
 
}