Source Code Cross Referenced for PollBean.java in  » Forum » mvnforum-1.1 » com » mvnforum » db » 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 » Forum » mvnforum 1.1 » com.mvnforum.db 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $Header: /cvsroot/mvnforum/mvnforum/src/com/mvnforum/db/PollBean.java,v 1.10 2007/12/10 03:21:11 minhnn Exp $
003:         * $Author: minhnn $
004:         * $Revision: 1.10 $
005:         * $Date: 2007/12/10 03:21:11 $
006:         *
007:         * ====================================================================
008:         *
009:         * Copyright (C) 2002-2007 by MyVietnam.net
010:         *
011:         * All copyright notices regarding mvnForum MUST remain
012:         * intact in the scripts and in the outputted HTML.
013:         * The "powered by" text/logo with a link back to
014:         * http://www.mvnForum.com and http://www.MyVietnam.net in
015:         * the footer of the pages MUST remain visible when the pages
016:         * are viewed on the internet or intranet.
017:         *
018:         * This program is free software; you can redistribute it and/or modify
019:         * it under the terms of the GNU General Public License as published by
020:         * the Free Software Foundation; either version 2 of the License, or
021:         * any later version.
022:         *
023:         * This program is distributed in the hope that it will be useful,
024:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
025:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
026:         * GNU General Public License for more details.
027:         *
028:         * You should have received a copy of the GNU General Public License
029:         * along with this program; if not, write to the Free Software
030:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
031:         *
032:         * Support can be obtained from support forums at:
033:         * http://www.mvnForum.com/mvnforum/index
034:         *
035:         * Correspondence and Marketing Questions can be sent to:
036:         * info at MyVietnam net
037:         *
038:         * @author: Minh Nguyen
039:         * @author: Mai  Nguyen
040:         */
041:        package com.mvnforum.db;
042:
043:        import java.sql.Timestamp;
044:
045:        public class PollBean {
046:
047:            public final static int POLL_VOTE_NO_CHANGE = 0;
048:            public final static int POLL_VOTE_CHANGE = 1;
049:
050:            public final static int POLL_MULTIPLE_NO = 0;
051:            public final static int POLL_MULTIPLE_YES = 1;
052:
053:            public final static int POLL_SHOW_RESULT_TO_ANYONE = 0;
054:            public final static int POLL_SHOW_RESULT_AFTER_VOTED = 1;
055:            public final static int POLL_SHOW_RESULT_AFTER_EXPIRED = 2;
056:
057:            public final static int POLL_NO_PUBLIC = 0;
058:            public final static int POLL_PUBLIC = 1;
059:
060:            public final static int POLL_STATUS_EDITING = 0;
061:            public final static int POLL_STATUS_ENABLE = 1;
062:            public final static int POLL_STATUS_DISABLED = 2;
063:
064:            public final static int POLL_TYPE_NORMAL = 0;
065:            public final static int POLL_TYPE_ANONYMOUS = 1;
066:
067:            public final static int ORPHAN = 0;
068:            public final static int THREAD = 1;
069:            public final static int ALBUMITEM = 2;
070:
071:            private int pollID;
072:            private String memberName;
073:            private String lastEditMemberName;
074:            private String pollQuestion;
075:            private String pollIP;
076:            private int pollVoteChange;
077:            private int pollHideResult;
078:            private int pollPublic;
079:            private int pollMultiple;
080:            private int pollOption;
081:            private int pollStatus;
082:            private int pollType;
083:            private Timestamp pollCreationDate;
084:            private Timestamp pollModifiedDate;
085:            private Timestamp pollStartDate;
086:            private Timestamp pollEndDate;
087:            private Timestamp pollLastVoteDate;
088:
089:            public int getPollID() {
090:                return pollID;
091:            }
092:
093:            public void setPollID(int pollID) {
094:                this .pollID = pollID;
095:            }
096:
097:            public String getMemberName() {
098:                return memberName;
099:            }
100:
101:            public void setMemberName(String memberName) {
102:                this .memberName = memberName;
103:            }
104:
105:            public String getLastEditMemberName() {
106:                return lastEditMemberName;
107:            }
108:
109:            public void setLastEditMemberName(String lastEditMemberName) {
110:                this .lastEditMemberName = lastEditMemberName;
111:            }
112:
113:            public String getPollQuestion() {
114:                return pollQuestion;
115:            }
116:
117:            public void setPollQuestion(String pollQuestion) {
118:                this .pollQuestion = pollQuestion;
119:            }
120:
121:            public String getPollIP() {
122:                return pollIP;
123:            }
124:
125:            public void setPollIP(String pollIP) {
126:                this .pollIP = pollIP;
127:            }
128:
129:            public int getPollVoteChange() {
130:                return pollVoteChange;
131:            }
132:
133:            public void setPollVoteChange(int pollVoteChange) {
134:                this .pollVoteChange = pollVoteChange;
135:            }
136:
137:            public int getPollHideResult() {
138:                return pollHideResult;
139:            }
140:
141:            public void setPollHideResult(int pollHideResult) {
142:                this .pollHideResult = pollHideResult;
143:            }
144:
145:            public int getPollPublic() {
146:                return pollPublic;
147:            }
148:
149:            public void setPollPublic(int pollPublic) {
150:                this .pollPublic = pollPublic;
151:            }
152:
153:            public int getPollMultiple() {
154:                return pollMultiple;
155:            }
156:
157:            public void setPollMultiple(int pollMultiple) {
158:                this .pollMultiple = pollMultiple;
159:            }
160:
161:            public int getPollOption() {
162:                return pollOption;
163:            }
164:
165:            public void setPollOption(int pollOption) {
166:                this .pollOption = pollOption;
167:            }
168:
169:            public int getPollStatus() {
170:                return pollStatus;
171:            }
172:
173:            public void setPollStatus(int pollStatus) {
174:                this .pollStatus = pollStatus;
175:            }
176:
177:            public int getPollType() {
178:                return pollType;
179:            }
180:
181:            public void setPollType(int pollType) {
182:                this .pollType = pollType;
183:            }
184:
185:            public Timestamp getPollCreationDate() {
186:                return pollCreationDate;
187:            }
188:
189:            public void setPollCreationDate(Timestamp pollCreationDate) {
190:                this .pollCreationDate = pollCreationDate;
191:            }
192:
193:            public Timestamp getPollModifiedDate() {
194:                return pollModifiedDate;
195:            }
196:
197:            public void setPollModifiedDate(Timestamp pollModifiedDate) {
198:                this .pollModifiedDate = pollModifiedDate;
199:            }
200:
201:            public Timestamp getPollStartDate() {
202:                return pollStartDate;
203:            }
204:
205:            public void setPollStartDate(Timestamp pollStartDate) {
206:                this .pollStartDate = pollStartDate;
207:            }
208:
209:            public Timestamp getPollEndDate() {
210:                return pollEndDate;
211:            }
212:
213:            public void setPollEndDate(Timestamp pollEndDate) {
214:                this .pollEndDate = pollEndDate;
215:            }
216:
217:            public Timestamp getPollLastVoteDate() {
218:                return pollLastVoteDate;
219:            }
220:
221:            public void setPollLastVoteDate(Timestamp pollLastVoteDate) {
222:                this.pollLastVoteDate = pollLastVoteDate;
223:            }
224:
225:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.