Hi Irwin, No I don't get an Exception, the warning that I get is in Eclipse. The application works fine when I test it, I thought there is maybe a better way when I get the warning. I am new to Ibatis therefore I post my message.
Sara. -----Original Message----- From: Irwin, Constance [mailto:[EMAIL PROTECTED] Sent: vrijdag 2 mei 2008 18:07 To: [email protected] Subject: RE: Problem with raw type. 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.
