use of javax.faces.model.DataModel in project acs-community-packaging by Alfresco.
the class NewEditionWizard method getDataModel.
/**
* Util metho which construct a data model with rows passed in parameter
*/
private DataModel getDataModel(Object rows) {
DataModel translationDataModel = new ListDataModel();
translationDataModel.setWrappedData(rows);
return translationDataModel;
}
Aggregations