Source Code Cross Referenced for WorkOrderId.java in  » Workflow-Engines » wilos » wilos » model » spem2 » workbreakdownelement » 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 » wilos » wilos.model.spem2.workbreakdownelement 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Wilos Is a cLever process Orchestration Software - http://www.wilos-project.org
03:         * Copyright (C) 2007 Sebastien BALARD <sbalard@wilos-project.org>
04:         * Copyright (C) 2007 Mathieu BENOIT <mathieu-benoit@hotmail.fr>
05:         *
06:         * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
07:         * General Public License as published by the Free Software Foundation; either version 2 of the License,
08:         * or (at your option) any later version.
09:         *
10:         * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
11:         * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12:         * GNU General Public License for more details.
13:         *
14:         * You should have received a copy of the GNU General Public License along with this program; if not,
15:         * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16:         */
17:
18:        package wilos.model.spem2.workbreakdownelement;
19:
20:        import java.io.Serializable;
21:
22:        import org.apache.commons.lang.builder.EqualsBuilder;
23:
24:        public class WorkOrderId implements  Serializable {
25:
26:            private static final long serialVersionUID = 1L;
27:
28:            private String predecessorId;
29:
30:            private String successorId;
31:
32:            // Constructors
33:
34:            /**
35:             * Default constructor
36:             */
37:            public WorkOrderId() {
38:                this .predecessorId = "";
39:                this .successorId = "";
40:            }
41:
42:            /**
43:             * equal method
44:             */
45:            public boolean equals(Object _obj) {
46:                if (_obj instanceof  WorkOrderId == false) {
47:                    return false;
48:                }
49:                if (this  == _obj) {
50:                    return true;
51:                }
52:                WorkOrderId workOrderId = (WorkOrderId) _obj;
53:                return new EqualsBuilder().append(this .predecessorId,
54:                        workOrderId.predecessorId).append(this .successorId,
55:                        workOrderId.successorId).isEquals();
56:            }
57:
58:            /* (non-Javadoc)
59:             * @see java.lang.Object#toString()
60:             */
61:            @Override
62:            public String toString() {
63:                return this .predecessorId + "-" + this .successorId;
64:            }
65:
66:            /**
67:             * @return the predecessorId
68:             */
69:            public String getPredecessorId() {
70:                return this .predecessorId;
71:            }
72:
73:            /**
74:             * @param _predecessorId
75:             *            the predecessorId to set
76:             */
77:            public void setPredecessorId(String _predecessorId) {
78:                this .predecessorId = _predecessorId;
79:            }
80:
81:            /**
82:             * @return the successorId
83:             */
84:            public String getSuccessorId() {
85:                return this .successorId;
86:            }
87:
88:            /**
89:             * @param _successorId
90:             *            the successorId to set
91:             */
92:            public void setSuccessorId(String _successorId) {
93:                this.successorId = _successorId;
94:            }
95:
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.