String stepName = step.getTitle();
headerRow.setName("header - delete again");
headerRow.addValue(stepName, Double.parseDouble("0"));
}
SQLQuery query = session.createSQLQuery(natSQL);
// needs to be there otherwise an exception is thrown
query.addScalar("stepCount", StandardBasicTypes.DOUBLE);
query.addScalar("stepName", StandardBasicTypes.STRING);
query.addScalar("intervall", StandardBasicTypes.STRING);
@SuppressWarnings("rawtypes")
List list = query.list();
DataTable dtbl = new DataTable("");
// if headerRow is set then add it to the DataTable to set columns
// needs to be removed later