Exemplo n.º 1
0
 public GroupForm getGroup(int groupid) throws GroupDAOSysException {
   GroupForm tf = null;
   try {
     GroupDAO dao = GroupDAOFactory.getDAO();
     tf = dao.getGroup(groupid);
   } catch (GroupDAOSysException tdse) {
     tdse.printStackTrace();
   }
   return tf;
 }