コード例 #1
0
ファイル: TreeLeafDO.java プロジェクト: mlocher-sf/jobmatch
 /**
  * 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;
 }
コード例 #2
0
ファイル: TreeLeafDO.java プロジェクト: mlocher-sf/jobmatch
 /**
  * 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;
 }
コード例 #3
0
ファイル: TreeLeafDO.java プロジェクト: mlocher-sf/jobmatch
 /**
  * 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;
 }