Source Code Cross Referenced for NodeHistoric.java in  » Workflow-Engines » bonita-v3.1 » hero » historic » 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 » Workflow Engines » bonita v3.1 » hero.historic 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package hero.historic;
002:
003:        /**
004:         *
005:         * Bonita
006:         * Copyright (C) 1999 Bull S.A.
007:         * Bull 68 route de versailles  78434 Louveciennes Cedex France
008:         * Further information: bonita@objectweb.org
009:         *
010:         * This library is free software; you can redistribute it and/or
011:         * modify it under the terms of the GNU Lesser General Public
012:         * License as published by the Free Software Foundation; either
013:         * version 2.1 of the License, or any later version.
014:         *
015:         * This library is distributed in the hope that it will be useful,
016:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
017:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
018:         * Lesser General Public License for more details.
019:         *
020:         * You should have received a copy of the GNU Lesser General Public
021:         * License along with this library; if not, write to the Free Software
022:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
023:         * USA
024:         *
025:         *
026:         --------------------------------------------------------------------------
027:         * $Id: NodeHistoric.java,v 1.1 2004/10/01 15:32:18 mvaldes Exp $
028:         *
029:         --------------------------------------------------------------------------
030:         */
031:
032:        import java.io.Serializable;
033:        import java.util.Vector;
034:
035:        public final class NodeHistoric implements  Serializable,
036:                java.lang.Cloneable {
037:
038:            // --------------------------------------------------- Instance Variables
039:
040:            /**
041:             * The name of the node
042:             */
043:            private String name = "";
044:
045:            /**
046:             * The state of the node
047:             */
048:            private String state = "";
049:
050:            /**
051:             * The role of the node
052:             */
053:            private String role = "";
054:
055:            /**
056:             * The executor of the node
057:             */
058:            private String executor = "";
059:
060:            /**
061:             * The type of the node
062:             */
063:            private String type = "";
064:
065:            /**
066:             * If this node is anticipable 
067:             */
068:            private boolean anticipable = true;
069:
070:            /**
071:             * The description of the node
072:             */
073:            private String description = "";
074:
075:            /**
076:             * The start date of the node
077:             */
078:            private String startDate = "";
079:
080:            /**
081:             * The end date of the node
082:             */
083:            private String endDate = "";
084:
085:            /**
086:             * Node properties
087:             */
088:            private Vector properties;
089:
090:            // ----------------------------------------------------------- Properties
091:
092:            /**
093:             * Get the name
094:             *@return String 
095:             */
096:            public String getName() {
097:                return (name);
098:            }
099:
100:            /**
101:             * Set the name.
102:             * @param name
103:             */
104:            public void setName(String name) {
105:                this .name = name;
106:            }
107:
108:            /**
109:             * Get the state
110:             *@return String 
111:             */
112:            public String getState() {
113:                return (state);
114:            }
115:
116:            /**
117:             * Set the state.
118:             * @param state
119:             */
120:            public void setState(String state) {
121:                this .state = state;
122:            }
123:
124:            /**
125:             * Get the type
126:             *@return String 
127:             */
128:            public String getType() {
129:                return (type);
130:            }
131:
132:            /**
133:             * Set the type.
134:             * @param type
135:             */
136:            public void setType(String type) {
137:                this .type = type;
138:            }
139:
140:            /**
141:             * Get the role
142:             *@return String 
143:             */
144:            public String getRole() {
145:                return (role);
146:            }
147:
148:            /**
149:             * Set the role.
150:             * @param role
151:             */
152:            public void setRole(String role) {
153:                this .role = role;
154:            }
155:
156:            /**
157:             * Get the anticipable property
158:             *@return boolean 
159:             */
160:            public boolean getAnticipable() {
161:                return (anticipable);
162:            }
163:
164:            /**
165:             * Set the anticipable property
166:             * @param anticipable
167:             */
168:            public void setAnticipable(boolean anticipable) {
169:                this .anticipable = anticipable;
170:            }
171:
172:            /**
173:             * Get the description of the activity
174:             *@return String 
175:             */
176:            public String getDescription() {
177:                return (description);
178:            }
179:
180:            /**
181:             * Set the description of the activity
182:             * @param description
183:             */
184:            public void setDescription(String description) {
185:                this .description = description;
186:            }
187:
188:            /**
189:             * Get the startDate of the activity
190:             *@return String 
191:             */
192:            public String getStartDate() {
193:                return (startDate);
194:            }
195:
196:            /**
197:             * Set the startDate of the activity
198:             * @param startDate
199:             */
200:            public void setStartDate(String startDate) {
201:                this .startDate = startDate;
202:            }
203:
204:            /**
205:             * Get the endate of the activity
206:             *@return String 
207:             */
208:            public String getEndDate() {
209:                return (endDate);
210:            }
211:
212:            /**
213:             * Set the endDate of the activity
214:             * @param endDate
215:             */
216:            public void setEndDate(String endDate) {
217:                this .endDate = endDate;
218:            }
219:
220:            /**
221:             * Get the executor of the activity
222:             *@return String 
223:             */
224:            public String getExecutor() {
225:                return (executor);
226:            }
227:
228:            /**
229:             * Set the executor of the activity
230:             * @param executor
231:             */
232:            public void setExecutor(String executor) {
233:                this .executor = executor;
234:            }
235:
236:            public Vector getProperties() {
237:                return (properties);
238:            }
239:
240:            public void setProperties(Vector properties) {
241:                this .properties = properties;
242:            }
243:
244:            public NodeHistoric() {
245:            }
246:
247:            public Object clone() throws java.lang.CloneNotSupportedException {
248:                return super.clone();
249:            }
250:
251:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.