コード例 #1
0
 TaskExecutionHistoryBeanDesc(
     String labelName, Map<String, String> converter, ColumnFilterType columnFilterType) {
   this.defaultValue = null;
   this.columnFilterType = columnFilterType;
   this.labelName = I18nUtils.getField(labelName);
   this.setConverter(converter);
 }
コード例 #2
0
 TaskExecutionHistoryBeanDesc(Object defaultValue) {
   this.defaultValue = defaultValue;
   this.columnFilterType = null;
   this.labelName = I18nUtils.getField(name());
 }
コード例 #3
0
 AdminUserBeanDesc(Object defaultValue) {
   this.defaultValue = defaultValue;
   this.labelName = I18nUtils.getField(name());
 }
コード例 #4
0
 TaskExecutionHistoryBeanDesc(String labelName, ColumnFilterType columnFilterType) {
   this.defaultValue = null;
   this.columnFilterType = columnFilterType;
   this.labelName = I18nUtils.getField(labelName);
 }
コード例 #5
0
 AdminUserBeanDesc() {
   this.defaultValue = null;
   this.labelName = I18nUtils.getField(name());
 }