Title: TheTable extends TheItem
Description: This is TableValue Object which represent the table data for select boxes on View/New/Edit report screens.
111811191120112111221123112411251126112711281129
while (resultSet.next()) { tableId = resultSet.getInt(1); tableName = resultSet.getString(2); tableFullName = resultSet.getString(3); TheTable table = new TheTable(tableId, tableFullName); table.setFields(getFields(tableId, moduleId)); tables.add(table); } } catch (SQLException e) { logger.error("[Exception][ReportFacadeEJB.getTables] Exception Thrown: " + e); throw new EJBException("Error executing SQL : " + e.toString());