/** * selects a collection of OrdenTrabajo objects pre-filled with their Trabajador objects. * * <p>This method is protected by default in order to keep the public api reasonable. You can * provide public methods for those you actually need in OrdenTrabajoPeer. * * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a * TorqueException. */ protected static List doSelectJoinTrabajador(Criteria criteria) throws TorqueException { setDbName(criteria); OrdenTrabajoPeer.addSelectColumns(criteria); int offset = numColumns + 1; TrabajadorPeer.addSelectColumns(criteria); criteria.addJoin(OrdenTrabajoPeer.RESPONSABLE_ID, TrabajadorPeer.ID); List rows = BasePeer.doSelect(criteria); List results = new ArrayList(); for (int i = 0; i < rows.size(); i++) { Record row = (Record) rows.get(i); Class omClass = OrdenTrabajoPeer.getOMClass(); OrdenTrabajo obj1 = (OrdenTrabajo) OrdenTrabajoPeer.row2Object(row, 1, omClass); omClass = TrabajadorPeer.getOMClass(); Trabajador obj2 = (Trabajador) TrabajadorPeer.row2Object(row, offset, omClass); boolean newObject = true; for (int j = 0; j < results.size(); j++) { OrdenTrabajo temp_obj1 = (OrdenTrabajo) results.get(j); Trabajador temp_obj2 = (Trabajador) temp_obj1.getTrabajador(); if (temp_obj2.getPrimaryKey().equals(obj2.getPrimaryKey())) { newObject = false; break; } } results.add(obj1); } return results; }
/** * The returned List will contain objects of the default type or objects that inherit from the * default. * * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a * TorqueException. */ public static List populateObjects(List records) throws TorqueException { List results = new ArrayList(records.size()); // populate the object(s) for (int i = 0; i < records.size(); i++) { Record row = (Record) records.get(i); results.add(OrdenTrabajoPeer.row2Object(row, 1, OrdenTrabajoPeer.getOMClass())); } return results; }
/** * Create a new object of type cls from a resultset row starting from a specified offset. This is * done so that you can select other rows than just those needed for this object. You may for * example want to create two objects from the same row. * * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a * TorqueException. */ public static OrdenTrabajo row2Object(Record row, int offset, Class cls) throws TorqueException { try { OrdenTrabajo obj = (OrdenTrabajo) cls.newInstance(); OrdenTrabajoPeer.populateObject(row, offset, obj); obj.setModified(false); obj.setNew(false); return obj; } catch (InstantiationException e) { throw new TorqueException(e); } catch (IllegalAccessException e) { throw new TorqueException(e); } }
/** * Method to do deletes. * * @param criteria object containing data that is used DELETE from database. * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a * TorqueException. */ public static void doDelete(Criteria criteria) throws TorqueException { OrdenTrabajoPeer.doDelete(criteria, (Connection) null); }