| |
|
| java.lang.Object poker.data.DODS_PitBoss.PitBossBDO
PitBossBDO | public class PitBossBDO implements java.io.Serializable(Code) | | PitBossBDO contains the same set and get methods as
the PitBossDO class.
Business Object (BO) classes typically need these set and get methods.
So by deriving a BO from a BDO, or by implementing a BO that
contains a BDO, the developer of the BO is spared some work.
author: version: $Revision: 1.1 $ |
Field Summary | |
protected PitBossDO | DO The PitBossDO object upon which the set and get methods operate. |
DO | protected PitBossDO DO(Code) | | The PitBossDO object upon which the set and get methods operate.
This member is protected so that classes derived from PitBossBDO
can access the underlying Data Object.
|
afterAnySet | protected void afterAnySet()(Code) | | |
beforeAnyGet | protected void beforeAnyGet()(Code) | | The developer of a Business Object that derives from this class
can override the methods:
beforeAnyGet
beforeAnySet
afterAnySet
to handle any general assertions or cleanup needed
for get and set methods.
|
beforeAnySet | protected void beforeAnySet()(Code) | | |
createExisting | public static PitBossBDO createExisting(PitBossDO DO)(Code) | | The createExisting method is used to create a PitBossBDO
from a PitBossDO that was returned by
the PitBossQuery class.
|
createVirgin | public static PitBossBDO createVirgin() throws Exception(Code) | | Like the class PitBossDO ,
this class acts as a factory.
Business Object (BO) classes typically need these set and get methods.
So by deriving a BO from a BDO, or by implementing a BO that
contains one or more BDOs, the developer of the BO is spared some work.
|
getGameName | public String getGameName() throws DataObjectException(Code) | | Get GameName of the PitBossDO
GameName of the PitBossDO |
getTotalBankrupt | public int getTotalBankrupt() throws DataObjectException(Code) | | Get TotalBankrupt of the PitBossDO
TotalBankrupt of the PitBossDO |
getTotalDollars | public int getTotalDollars() throws DataObjectException(Code) | | Get TotalDollars of the PitBossDO
TotalDollars of the PitBossDO |
getTotalHandsDealt | public int getTotalHandsDealt() throws DataObjectException(Code) | | Get TotalHandsDealt of the PitBossDO
TotalHandsDealt of the PitBossDO |
getTotalHandsWon | public int getTotalHandsWon() throws DataObjectException(Code) | | Get TotalHandsWon of the PitBossDO
TotalHandsWon of the PitBossDO |
setGameName | public void setGameName(String GameName) throws DataObjectException(Code) | | Set GameName of the PitBossDO
Parameters: GameName - of the PitBossDO |
setTotalBankrupt | public void setTotalBankrupt(int TotalBankrupt) throws DataObjectException(Code) | | Set TotalBankrupt of the PitBossDO
Parameters: TotalBankrupt - of the PitBossDO |
setTotalDollars | public void setTotalDollars(int TotalDollars) throws DataObjectException(Code) | | Set TotalDollars of the PitBossDO
Parameters: TotalDollars - of the PitBossDO |
setTotalHandsDealt | public void setTotalHandsDealt(int TotalHandsDealt) throws DataObjectException(Code) | | Set TotalHandsDealt of the PitBossDO
Parameters: TotalHandsDealt - of the PitBossDO |
setTotalHandsWon | public void setTotalHandsWon(int TotalHandsWon) throws DataObjectException(Code) | | Set TotalHandsWon of the PitBossDO
Parameters: TotalHandsWon - of the PitBossDO |
|
|
|