| |
|
| java.lang.Object poker.data.DODS_GameData.GameDataBDO
GameDataBDO | public class GameDataBDO implements java.io.Serializable(Code) | | GameDataBDO contains the same set and get methods as
the GameDataDO 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 GameDataDO | DO The GameDataDO object upon which the set and get methods operate. |
DO | protected GameDataDO DO(Code) | | The GameDataDO object upon which the set and get methods operate.
This member is protected so that classes derived from GameDataBDO
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 GameDataBDO createExisting(GameDataDO DO)(Code) | | The createExisting method is used to create a GameDataBDO
from a GameDataDO that was returned by
the GameDataQuery class.
|
createVirgin | public static GameDataBDO createVirgin() throws Exception(Code) | | Like the class GameDataDO ,
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.
|
getCash | public int getCash() throws DataObjectException(Code) | | Get Cash of the GameDataDO
Cash of the GameDataDO |
getDeck | public String getDeck() throws DataObjectException(Code) | | Get Deck of the GameDataDO
Deck of the GameDataDO |
getEmail | public String getEmail() throws DataObjectException(Code) | | Get Email of the GameDataDO
Email of the GameDataDO |
getLargestBet | public int getLargestBet() throws DataObjectException(Code) | | Get LargestBet of the GameDataDO
LargestBet of the GameDataDO |
getName | public String getName() throws DataObjectException(Code) | | Get Name of the GameDataDO
Name of the GameDataDO |
getPassword | public String getPassword() throws DataObjectException(Code) | | Get Password of the GameDataDO
Password of the GameDataDO |
getSmallestBet | public int getSmallestBet() throws DataObjectException(Code) | | Get SmallestBet of the GameDataDO
SmallestBet of the GameDataDO |
getTotalPlayed | public int getTotalPlayed() throws DataObjectException(Code) | | Get TotalPlayed of the GameDataDO
TotalPlayed of the GameDataDO |
getTotalWon | public int getTotalWon() throws DataObjectException(Code) | | Get TotalWon of the GameDataDO
TotalWon of the GameDataDO |
setCash | public void setCash(int Cash) throws DataObjectException(Code) | | Set Cash of the GameDataDO
Parameters: Cash - of the GameDataDO |
setDeck | public void setDeck(String Deck) throws DataObjectException(Code) | | Set Deck of the GameDataDO
Parameters: Deck - of the GameDataDO |
setEmail | public void setEmail(String Email) throws DataObjectException(Code) | | Set Email of the GameDataDO
Parameters: Email - of the GameDataDO |
setLargestBet | public void setLargestBet(int LargestBet) throws DataObjectException(Code) | | Set LargestBet of the GameDataDO
Parameters: LargestBet - of the GameDataDO |
setName | public void setName(String Name) throws DataObjectException(Code) | | Set Name of the GameDataDO
Parameters: Name - of the GameDataDO |
setPassword | public void setPassword(String Password) throws DataObjectException(Code) | | Set Password of the GameDataDO
Parameters: Password - of the GameDataDO |
setSmallestBet | public void setSmallestBet(int SmallestBet) throws DataObjectException(Code) | | Set SmallestBet of the GameDataDO
Parameters: SmallestBet - of the GameDataDO |
setTotalPlayed | public void setTotalPlayed(int TotalPlayed) throws DataObjectException(Code) | | Set TotalPlayed of the GameDataDO
Parameters: TotalPlayed - of the GameDataDO |
setTotalWon | public void setTotalWon(int TotalWon) throws DataObjectException(Code) | | Set TotalWon of the GameDataDO
Parameters: TotalWon - of the GameDataDO |
|
|
|