Source Code Cross Referenced for Appointment.java in  » Project-Management » borg » net » sf » borg » model » beans » 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 » Project Management » borg » net.sf.borg.model.beans 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // This code was generated by GenerateDataObjects
002:        package net.sf.borg.model.beans;
003:
004:        public class Appointment extends KeyedBean implements 
005:                java.io.Serializable {
006:
007:            private java.util.Date Date_;
008:
009:            public java.util.Date getDate() {
010:                return (Date_);
011:            }
012:
013:            public void setDate(java.util.Date xx) {
014:                Date_ = xx;
015:            }
016:
017:            private Integer Duration_;
018:
019:            public Integer getDuration() {
020:                return (Duration_);
021:            }
022:
023:            public void setDuration(Integer xx) {
024:                Duration_ = xx;
025:            }
026:
027:            private String Text_;
028:
029:            public String getText() {
030:                return (Text_);
031:            }
032:
033:            public void setText(String xx) {
034:                Text_ = xx;
035:            }
036:
037:            private java.util.Vector SkipList_;
038:
039:            public java.util.Vector getSkipList() {
040:                return (SkipList_);
041:            }
042:
043:            public void setSkipList(java.util.Vector xx) {
044:                SkipList_ = xx;
045:            }
046:
047:            private java.util.Date NextTodo_;
048:
049:            public java.util.Date getNextTodo() {
050:                return (NextTodo_);
051:            }
052:
053:            public void setNextTodo(java.util.Date xx) {
054:                NextTodo_ = xx;
055:            }
056:
057:            private Integer SN_;
058:
059:            public Integer getSN() {
060:                return (SN_);
061:            }
062:
063:            public void setSN(Integer xx) {
064:                SN_ = xx;
065:            }
066:
067:            private Integer Vacation_;
068:
069:            public Integer getVacation() {
070:                return (Vacation_);
071:            }
072:
073:            public void setVacation(Integer xx) {
074:                Vacation_ = xx;
075:            }
076:
077:            private Integer Holiday_;
078:
079:            public Integer getHoliday() {
080:                return (Holiday_);
081:            }
082:
083:            public void setHoliday(Integer xx) {
084:                Holiday_ = xx;
085:            }
086:
087:            private boolean Private_;
088:
089:            public boolean getPrivate() {
090:                return (Private_);
091:            }
092:
093:            public void setPrivate(boolean xx) {
094:                Private_ = xx;
095:            }
096:
097:            private Integer Times_;
098:
099:            public Integer getTimes() {
100:                return (Times_);
101:            }
102:
103:            public void setTimes(Integer xx) {
104:                Times_ = xx;
105:            }
106:
107:            private String Frequency_;
108:
109:            public String getFrequency() {
110:                return (Frequency_);
111:            }
112:
113:            public void setFrequency(String xx) {
114:                Frequency_ = xx;
115:            }
116:
117:            private boolean Todo_;
118:
119:            public boolean getTodo() {
120:                return (Todo_);
121:            }
122:
123:            public void setTodo(boolean xx) {
124:                Todo_ = xx;
125:            }
126:
127:            private String Color_;
128:
129:            public String getColor() {
130:                return (Color_);
131:            }
132:
133:            public void setColor(String xx) {
134:                Color_ = xx;
135:            }
136:
137:            private boolean RepeatFlag_;
138:
139:            public boolean getRepeatFlag() {
140:                return (RepeatFlag_);
141:            }
142:
143:            public void setRepeatFlag(boolean xx) {
144:                RepeatFlag_ = xx;
145:            }
146:
147:            private String Category_;
148:
149:            public String getCategory() {
150:                return (Category_);
151:            }
152:
153:            public void setCategory(String xx) {
154:                Category_ = xx;
155:            }
156:
157:            private boolean New_;
158:
159:            public boolean getNew() {
160:                return (New_);
161:            }
162:
163:            public void setNew(boolean xx) {
164:                New_ = xx;
165:            }
166:
167:            private boolean Modified_;
168:
169:            public boolean getModified() {
170:                return (Modified_);
171:            }
172:
173:            public void setModified(boolean xx) {
174:                Modified_ = xx;
175:            }
176:
177:            private boolean Deleted_;
178:
179:            public boolean getDeleted() {
180:                return (Deleted_);
181:            }
182:
183:            public void setDeleted(boolean xx) {
184:                Deleted_ = xx;
185:            }
186:
187:            private String Alarm_;
188:
189:            public String getAlarm() {
190:                return (Alarm_);
191:            }
192:
193:            public void setAlarm(String xx) {
194:                Alarm_ = xx;
195:            }
196:
197:            private String ReminderTimes_;
198:
199:            public String getReminderTimes() {
200:                return (ReminderTimes_);
201:            }
202:
203:            public void setReminderTimes(String xx) {
204:                ReminderTimes_ = xx;
205:            }
206:
207:            private String Untimed_;
208:
209:            public String getUntimed() {
210:                return (Untimed_);
211:            }
212:
213:            public void setUntimed(String xx) {
214:                Untimed_ = xx;
215:            }
216:
217:            protected Object clone() {
218:                Appointment dst = new Appointment();
219:                dst.setKey(getKey());
220:                dst.setDate(getDate());
221:                dst.setDuration(getDuration());
222:                dst.setText(getText());
223:                dst.setSkipList(getSkipList());
224:                dst.setNextTodo(getNextTodo());
225:                dst.setSN(getSN());
226:                dst.setVacation(getVacation());
227:                dst.setHoliday(getHoliday());
228:                dst.setPrivate(getPrivate());
229:                dst.setTimes(getTimes());
230:                dst.setFrequency(getFrequency());
231:                dst.setTodo(getTodo());
232:                dst.setColor(getColor());
233:                dst.setRepeatFlag(getRepeatFlag());
234:                dst.setCategory(getCategory());
235:                dst.setNew(getNew());
236:                dst.setModified(getModified());
237:                dst.setDeleted(getDeleted());
238:                dst.setAlarm(getAlarm());
239:                dst.setReminderTimes(getReminderTimes());
240:                dst.setUntimed(getUntimed());
241:                return (dst);
242:            }
243:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.