/** * Get Profile of the NewDBTable * * @return Profile of the NewDBTable * @exception DataObjectException If the object is not found in the database. */ public jobmatch.data.ProfileDO getProfile() throws DataObjectException { beforeAnyGet(); // business actions/assertions prior to data return checkLoad(); return data.Profile; }
/** * Get Mandatory of the NewDBTable * * @return Mandatory of the NewDBTable * @exception DataObjectException If the object is not found in the database. */ public boolean getMandatory() throws DataObjectException { beforeAnyGet(); // business actions/assertions prior to data return checkLoad(); return data.Mandatory; }
/** * Get LeafNumber of the NewDBTable * * @return LeafNumber of the NewDBTable * @exception DataObjectException If the object is not found in the database. */ public int getLeafNumber() throws DataObjectException { beforeAnyGet(); // business actions/assertions prior to data return checkLoad(); return data.LeafNumber; }