Object value = super.getValue();
if(filteredData != null) {
if(value instanceof SelectableDataModel) {
return selectableDataModelWrapper == null
? (selectableDataModelWrapper = new SelectableDataModelWrapper((SelectableDataModel) value, filteredData))
: selectableDataModelWrapper;
}
else {
return filteredData;
}