Source Code Cross Referenced for ItemFinderOutRowDto.java in  » J2EE » Jaffa » org » jaffa » applications » test » modules » material » components » itemfinder » dto » 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 » Jaffa » org.jaffa.applications.test.modules.material.components.itemfinder.dto 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // .//GEN-BEGIN:_1_be
002:        package org.jaffa.applications.test.modules.material.components.itemfinder.dto;
003:
004:        import org.jaffa.util.StringHelper;
005:        import org.jaffa.datatypes.Formatter;
006:
007:        // .//GEN-END:_1_be
008:        // Add additional imports//GEN-FIRST:_imports
009:
010:        // .//GEN-LAST:_imports
011:        // .//GEN-BEGIN:_2_be
012:        /** The output for the ItemFinder contains an array of instances of this class.
013:         */
014:        public class ItemFinderOutRowDto {
015:
016:            /** Holds value of property segregationCode. */
017:            private String segregationCode;
018:
019:            /** Holds value of property itemId. */
020:            private String itemId;
021:
022:            /** Holds value of property partNo. */
023:            private String partNo;
024:
025:            /** Holds value of property serial. */
026:            private String serial;
027:
028:            /** Holds value of property qty. */
029:            private Double qty;
030:
031:            /** Getter for property segregationCode.
032:             * @return Value of property segregationCode.
033:             */
034:            public String getSegregationCode() {
035:                return segregationCode;
036:            }
037:
038:            /** Setter for property segregationCode.
039:             * @param segregationCode New value of property segregationCode.
040:             */
041:            public void setSegregationCode(String segregationCode) {
042:                if (segregationCode == null || segregationCode.length() == 0)
043:                    this .segregationCode = null;
044:                else
045:                    this .segregationCode = segregationCode;
046:            }
047:
048:            /** Getter for property itemId.
049:             * @return Value of property itemId.
050:             */
051:            public String getItemId() {
052:                return itemId;
053:            }
054:
055:            /** Setter for property itemId.
056:             * @param itemId New value of property itemId.
057:             */
058:            public void setItemId(String itemId) {
059:                if (itemId == null || itemId.length() == 0)
060:                    this .itemId = null;
061:                else
062:                    this .itemId = itemId;
063:            }
064:
065:            /** Getter for property partNo.
066:             * @return Value of property partNo.
067:             */
068:            public String getPartNo() {
069:                return partNo;
070:            }
071:
072:            /** Setter for property partNo.
073:             * @param partNo New value of property partNo.
074:             */
075:            public void setPartNo(String partNo) {
076:                if (partNo == null || partNo.length() == 0)
077:                    this .partNo = null;
078:                else
079:                    this .partNo = partNo;
080:            }
081:
082:            /** Getter for property serial.
083:             * @return Value of property serial.
084:             */
085:            public String getSerial() {
086:                return serial;
087:            }
088:
089:            /** Setter for property serial.
090:             * @param serial New value of property serial.
091:             */
092:            public void setSerial(String serial) {
093:                if (serial == null || serial.length() == 0)
094:                    this .serial = null;
095:                else
096:                    this .serial = serial;
097:            }
098:
099:            /** Getter for property qty.
100:             * @return Value of property qty.
101:             */
102:            public Double getQty() {
103:                return qty;
104:            }
105:
106:            /** Setter for property qty.
107:             * @param qty New value of property qty.
108:             */
109:            public void setQty(Double qty) {
110:                this .qty = qty;
111:            }
112:
113:            /** Returns the debug information
114:             * @return The debug information
115:             */
116:            public String toString() {
117:                StringBuffer buf = new StringBuffer();
118:                buf.append("<ItemFinderOutRowDto>");
119:                buf.append("<segregationCode>");
120:                if (segregationCode != null)
121:                    buf.append(StringHelper.convertToHTML(Formatter
122:                            .format(segregationCode)));
123:                buf.append("</segregationCode>");
124:                buf.append("<itemId>");
125:                if (itemId != null)
126:                    buf.append(StringHelper.convertToHTML(Formatter
127:                            .format(itemId)));
128:                buf.append("</itemId>");
129:                buf.append("<partNo>");
130:                if (partNo != null)
131:                    buf.append(StringHelper.convertToHTML(Formatter
132:                            .format(partNo)));
133:                buf.append("</partNo>");
134:                buf.append("<serial>");
135:                if (serial != null)
136:                    buf.append(StringHelper.convertToHTML(Formatter
137:                            .format(serial)));
138:                buf.append("</serial>");
139:                buf.append("<qty>");
140:                if (qty != null)
141:                    buf.append(StringHelper
142:                            .convertToHTML(Formatter.format(qty)));
143:                buf.append("</qty>");
144:                buf.append("</ItemFinderOutRowDto>");
145:                return buf.toString();
146:            }
147:
148:            // .//GEN-END:_2_be
149:            // All the custom code goes here //GEN-FIRST:_custom
150:
151:            // .//GEN-LAST:_custom
152:        }
w_w__w_.j_ava___2_s___.__com_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.