Exemplo n.º 1
0
 /**
  * Set Description of the IndustryDO
  *
  * @param Description of the IndustryDO
  * @exception DataObjectException If the object is not found in the database.
  */
 public void setDescription(String Description) throws DataObjectException {
   try {
     // business actions/assertions prior to data assignment
     beforeAnySet();
   } catch (Exception e) {
     throw new DataObjectException("beforeAnySet: " + e.getMessage());
   }
   DO.setDescription(Description);
   afterAnySet(); // business actions/assertions after data assignment
 }