171819202122232425262728
/** * Main code */ private void run() { TestDao testDao = new PlainTestDao(); List l = testDao.getAll(); for (Iterator i = l.iterator(); i.hasNext();) { System.out.println(i.next()); } }