Пример #1
0
 /**
  * From the many-to-many relationship expressed by CompanyDO, remove (delete) the AdressDO object
  * that indirectly refers to the DO held by this BDO.
  *
  * @param d The AdressDO to remove from the CompanyDO mapping for this BDO.
  * @exception DataObjectException If the object is not found in the database.
  */
 public void unmapAdress_via_CompanyDO(jobmatch.data.AdressDO d, DBTransaction tran)
     throws DataObjectException, DatabaseManagerException, RefAssertionException, SQLException,
         DBRowUpdateException, QueryException {
   jobmatch.data.AdressBDO b = jobmatch.data.AdressBDO.createExisting(d);
   unmapAdress_via_CompanyBDO(b, tran);
 }