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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
global class IdeaStandardSetController {
    /**
     * 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() { }
    /**
     * First
     */
    global void first() { }
    /**
     * Indicate whether there are more records than the max record limit
     */
    global Boolean getCompleteResult() { }
    /**
     * Return the filter ID
     */
    global String getFilterId() { }
    /**
     * Indicate whether there are any more records
     */
    global Boolean getHasNext() { }
    /**
     * Indicate whether there are previous records
     */
    global Boolean getHasPrevious() { }
    /**
     * Get the standard list of ideas
     */
    global List<Idea> getIdeaList() { }
    /**
     * Return The set of listviews available to the current user
     */
    global List<System.SelectOption> getListViewOptions() { }
    /**
     * Return the pagenumber
     */
    global Integer getPageNumber() { }
    /**
     * Return the page size
     */
    global Integer getPageSize() { }
    /**
     * Get the subject record
     */
    global SObject getRecord() { }
    /**
     * Get the records
     */
    global List<SObject> getRecords() { }
    /**
     * Return the result size
     */
    global Integer getResultSize() { }
    /**
     * Get the selected records
     */
    global List<SObject> getSelected() { }
    /**
     * Last
     */
    global void last() { }
    /**
     * Next
     */
    global void next() { }
    /**
     * Previous
     */
    global void previous() { }
    /**
     * Save any modified or new records
     */
    global System.PageReference save() { }
    /**
     * Set the filter ID
     */
    global void setFilterId(String filterId) { }
    /**
     * Set the page number
     */
    global void setPageNumber(Integer pageNumber) { }
    /**
     * Set the page size
     */
    global void setPageSize(Integer pageSize) { }
    /**
     * Set the selected records
     */
    global void setSelected(List<SObject> selected) { }
 
}