} else if ( oracle.hasEnums( column.getFactType(),
column.getFactField() ) ) {
final LimitedEntryDropDownManager.Context context = new LimitedEntryDropDownManager.Context( column );
final Map<String, String> currentValueMap = dropDownManager.getCurrentValueMap( context );
final DropDownData dd = oracle.getEnums( column.getFactType(),
column.getFactField(),
currentValueMap );
if ( dd == null ) {
return makeListBox( new String[ 0 ],
column,
value );
}
return makeListBox( dd.getFixedList(),
column,
value );
}
DataType.DataTypes type = utils.getTypeSafeType( column );