Sarah,

Are you getting an exception? It looks like you are getting a warning related 
to the list data structure:

                      List resultList = DepartDao.selectByExample(DepartExample)

Btw, is this Hibernate or some other DAO code?

Connie
________________________________________
From: Sara [EMAIL PROTECTED]
Sent: Friday, May 02, 2008 11:51 AM
To: [email protected]
Subject: Problem with raw type.

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.

Reply via email to