Hi all,
I have a question about a select query.
This is the source that I use:
try {
dao.DepartmentDAO DepartDao = (dao.DepartmentDAO)
DaoManagerRequester.getDaoManager().getDao(dao.DepartmentDAO.class);
model.DepartmentExample DepartExample = new model.DepartmentExample();
DepartExample.createCriteria().andDepartmentcodeLike(likekey);
List resultList = DepartDao.selectByExample(DepartExample);
if (resultList.size() > 0) {
departmentRow = new DepartmentRow[resultList.size()];
for (int i = 0; i < resultList1.size(); i++) {
etc...
This is the warning that I get:
List is a raw type. References to generic type List<E> should be
parameterized
Would anyone be so kind to give me some information or an example to solve
this?
Regards,
Sara.