Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.33 KB | None | 0 0
  1. // Generated by Illuminated Cloud on Mon Jul 01 19:26:30 MSK 2019. Do not edit.
  2.  
  3. global class /*sortablegrid.*/SDGField implements Comparable
  4. {
  5.     global Boolean canFilter;
  6.     global Boolean canSort;
  7.     global String ColumnName;
  8.     global Integer FieldOrder;
  9.     global String FieldStyle;
  10.     global String FieldType;
  11.     global String FilterType;
  12.     global String ID;
  13.     global Boolean isHTMLFormatted;
  14.     global String Label;
  15.     global List<AuraSelectOption> options;
  16.     global SDGFilter Preferences;
  17.     global Integer scale;
  18.  
  19.     global SDGField(String ID, String Label, String ColumnName, String FieldType, String FieldStyle, Boolean canSort, List<AuraSelectOption> options)
  20.     {
  21.     }
  22.  
  23.     global SDGField(String ID, String Label, String ColumnName, String FieldType, String FieldStyle, Boolean canSort, Boolean isHTMLFormatted, List<AuraSelectOption> options)
  24.     {
  25.     }
  26.  
  27.     global SDGField(String ID, String Label, String ColumnName, String FieldType, String FieldStyle, Boolean canSort, Boolean isHTMLFormatted, List<AuraSelectOption> options, Integer FieldOrder)
  28.     {
  29.     }
  30.  
  31.     global SDGField(String ID, String Label, String ColumnName, String FieldType, String FieldStyle, Boolean canSort, Boolean canFilter, Boolean isHTMLFormatted, List<AuraSelectOption> options, Integer FieldOrder)
  32.     {
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement