/**
* @return singleton of ResultCellFactory
*/
public static synchronized ResultCellFactory getResultCellFactory() {
if (resultCellFactory == null) {
resultCellFactory = new ResultCellFactory() {
@Override
public ResultCell create() {
return AutoBeanUtil.newResultCell();
}
};