/** * Set Profile of the NewDBTable * * @param Profile of the NewDBTable * @exception DataObjectException If the object is not found in the database. */ public void setProfile(jobmatch.data.ProfileDO Profile) throws DataObjectException { try { // business actions/assertions prior to data assignment beforeAnySet(); } catch (Exception e) { throw new DataObjectException("beforeAnySet: " + e.getMessage()); } checkLoad(); data.Profile = (jobmatch.data.ProfileDO) markNewValue(data.Profile, Profile); afterAnySet(); // business actions/assertions after data assignment }
/** * Set Mandatory of the NewDBTable * * @param Mandatory of the NewDBTable * @exception DataObjectException If the object is not found in the database. */ public void setMandatory(boolean Mandatory) throws DataObjectException { try { // business actions/assertions prior to data assignment beforeAnySet(); } catch (Exception e) { throw new DataObjectException("beforeAnySet: " + e.getMessage()); } checkLoad(); data.Mandatory = markNewValue(data.Mandatory, Mandatory); afterAnySet(); // business actions/assertions after data assignment }
/** * Set LeafNumber of the NewDBTable * * @param LeafNumber of the NewDBTable * @exception DataObjectException If the object is not found in the database. */ public void setLeafNumber(int LeafNumber) throws DataObjectException { try { // business actions/assertions prior to data assignment beforeAnySet(); } catch (Exception e) { throw new DataObjectException("beforeAnySet: " + e.getMessage()); } checkLoad(); data.LeafNumber = markNewValue(data.LeafNumber, LeafNumber); afterAnySet(); // business actions/assertions after data assignment }