Source Code Cross Referenced for PitBossBDO.java in  » J2EE » Enhydra-Demos » poker » data » DODS_PitBoss » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » Enhydra Demos » poker.data.DODS_PitBoss 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*-----------------------------------------------------------------------------
002:         * Enhydra Java Application Server
003:         * Copyright 1997-1999 Lutris Technologies, Inc.
004:         * All rights reserved.
005:         *
006:         * Redistribution and use in source and binary forms, with or without
007:         * modification, are permitted provided that the following conditions
008:         * are met:
009:         * 1. Redistributions of source code must retain the above copyright
010:         *    notice, this list of conditions and the following disclaimer.
011:         * 2. Redistributions in binary form must reproduce the above copyright
012:         *    notice, this list of conditions and the following disclaimer in
013:         *    the documentation and/or other materials provided with the distribution.
014:         * 3. All advertising materials mentioning features or use of this software
015:         *    must display the following acknowledgement:
016:         *      This product includes Enhydra software developed by Lutris
017:         *      Technologies, Inc. and its contributors.
018:         * 4. Neither the name of Lutris Technologies nor the names of its contributors
019:         *    may be used to endorse or promote products derived from this software
020:         *    without specific prior written permission.
021:         *
022:         * THIS SOFTWARE IS PROVIDED BY LUTRIS TECHNOLOGIES AND CONTRIBUTORS ``AS IS''
023:         * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
024:         * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
025:         * ARE DISCLAIMED.  IN NO EVENT SHALL LUTRIS TECHNOLOGIES OR CONTRIBUTORS BE
026:         * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
027:         * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
028:         * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
029:         * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
030:         * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
031:         * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
032:         * POSSIBILITY OF SUCH DAMAGE.
033:         *-----------------------------------------------------------------------------
034:         * /root/test/poker/data/DODS_PitBoss/PitBossBDO.java
035:         *-----------------------------------------------------------------------------
036:         */
037:
038:        package poker.data.DODS_PitBoss;
039:
040:        //import dods.builder.sourceGenerators.Query.DataObjectException;
041:        import com.lutris.dods.builder.generator.query.*;
042:
043:        /**
044:         * PitBossBDO contains the same set and get methods as
045:         * the PitBossDO class.
046:         * Business Object (BO) classes typically need these set and get methods.
047:         * So by deriving a BO from a BDO, or by implementing a BO that
048:         * contains a BDO, the developer of the BO is spared some work.
049:         *
050:         * @author <AUTHOR>
051:         * @version $Revision: 1.1 $
052:         */
053:        public class PitBossBDO implements  java.io.Serializable {
054:
055:            /**
056:             * The PitBossDO object upon which the set and get methods operate.
057:             * This member is protected so that classes derived from PitBossBDO
058:             * can access the underlying Data Object.
059:             */
060:            protected PitBossDO DO;
061:
062:            /**
063:             * Like the class <CODE>PitBossDO</CODE>,
064:             * this class acts as a factory.
065:             * Business Object (BO) classes typically need these set and get methods.
066:             * So by deriving a BO from a BDO, or by implementing a BO that
067:             * contains one or more BDOs, the developer of the BO is spared some work.
068:             */
069:            public static PitBossBDO createVirgin() throws Exception {
070:                PitBossBDO bdo = new PitBossBDO();
071:                bdo.DO = PitBossDO.createVirgin();
072:                return bdo;
073:            }
074:
075:            /**
076:             * The createExisting method is used to create a <CODE>PitBossBDO</CODE>
077:             * from a <CODE>PitBossDO</CODE> that was returned by
078:             * the <CODE>PitBossQuery</CODE> class.
079:             */
080:            public static PitBossBDO createExisting(PitBossDO DO) {
081:                PitBossBDO bdo = new PitBossBDO();
082:                bdo.DO = DO;
083:                return bdo;
084:            }
085:
086:            /**
087:             * The developer of a Business Object that derives from this class
088:             * can override the methods:<CODE>
089:             *     beforeAnyGet
090:             *     beforeAnySet
091:             *     afterAnySet
092:             * </CODE> to handle any general assertions or cleanup needed
093:             * for <CODE>get</CODE> and <CODE>set</CODE> methods.
094:             */
095:            protected void beforeAnyGet() {
096:            }
097:
098:            protected void beforeAnySet() {
099:            }
100:
101:            protected void afterAnySet() {
102:            }
103:
104:            /**
105:             * Get GameName of the PitBossDO
106:             *
107:             * @return GameName of the PitBossDO
108:             */
109:            public String getGameName() throws DataObjectException {
110:                return DO.getGameName();
111:            }
112:
113:            /**
114:             * Set GameName of the PitBossDO
115:             *
116:             * @param GameName of the PitBossDO
117:             */
118:
119:            public void setGameName(String GameName) throws DataObjectException {
120:                DO.setGameName(GameName);
121:            }
122:
123:            /**
124:             * Get TotalDollars of the PitBossDO
125:             *
126:             * @return TotalDollars of the PitBossDO
127:             */
128:            public int getTotalDollars() throws DataObjectException {
129:                return DO.getTotalDollars();
130:            }
131:
132:            /**
133:             * Set TotalDollars of the PitBossDO
134:             *
135:             * @param TotalDollars of the PitBossDO
136:             */
137:
138:            public void setTotalDollars(int TotalDollars)
139:                    throws DataObjectException {
140:                DO.setTotalDollars(TotalDollars);
141:            }
142:
143:            /**
144:             * Get TotalBankrupt of the PitBossDO
145:             *
146:             * @return TotalBankrupt of the PitBossDO
147:             */
148:            public int getTotalBankrupt() throws DataObjectException {
149:                return DO.getTotalBankrupt();
150:            }
151:
152:            /**
153:             * Set TotalBankrupt of the PitBossDO
154:             *
155:             * @param TotalBankrupt of the PitBossDO
156:             */
157:
158:            public void setTotalBankrupt(int TotalBankrupt)
159:                    throws DataObjectException {
160:                DO.setTotalBankrupt(TotalBankrupt);
161:            }
162:
163:            /**
164:             * Get TotalHandsDealt of the PitBossDO
165:             *
166:             * @return TotalHandsDealt of the PitBossDO
167:             */
168:            public int getTotalHandsDealt() throws DataObjectException {
169:                return DO.getTotalHandsDealt();
170:            }
171:
172:            /**
173:             * Set TotalHandsDealt of the PitBossDO
174:             *
175:             * @param TotalHandsDealt of the PitBossDO
176:             */
177:
178:            public void setTotalHandsDealt(int TotalHandsDealt)
179:                    throws DataObjectException {
180:                DO.setTotalHandsDealt(TotalHandsDealt);
181:            }
182:
183:            /**
184:             * Get TotalHandsWon of the PitBossDO
185:             *
186:             * @return TotalHandsWon of the PitBossDO
187:             */
188:            public int getTotalHandsWon() throws DataObjectException {
189:                return DO.getTotalHandsWon();
190:            }
191:
192:            /**
193:             * Set TotalHandsWon of the PitBossDO
194:             *
195:             * @param TotalHandsWon of the PitBossDO
196:             */
197:
198:            public void setTotalHandsWon(int TotalHandsWon)
199:                    throws DataObjectException {
200:                DO.setTotalHandsWon(TotalHandsWon);
201:            }
202:
203:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.