Source Code Cross Referenced for PurchaseOrderType.java in  » GIS » GeoTools-2.4.1 » org » geotools » po » 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 » GIS » GeoTools 2.4.1 » org.geotools.po 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        //
002:        // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-hudson-3037-ea3 
003:        // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004:        // Any modifications to this file will be lost upon recompilation of the source schema. 
005:        // Generated on: 2006.10.31 at 03:24:08 PM PST 
006:        //
007:
008:        package org.geotools.po;
009:
010:        import javax.xml.bind.annotation.AccessType;
011:        import javax.xml.bind.annotation.XmlAccessorType;
012:        import javax.xml.bind.annotation.XmlAttribute;
013:        import javax.xml.bind.annotation.XmlElement;
014:        import javax.xml.bind.annotation.XmlType;
015:        import javax.xml.datatype.XMLGregorianCalendar;
016:        import org.geotools.po.Items;
017:        import org.geotools.po.PurchaseOrderType;
018:        import org.geotools.po.USAddress;
019:
020:        /**
021:         * <p>Java class for PurchaseOrderType complex type.
022:         * 
023:         * <p>The following schema fragment specifies the expected content contained within this class.
024:         * 
025:         * <pre>
026:         * &lt;complexType name="PurchaseOrderType">
027:         *   &lt;complexContent>
028:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
029:         *       &lt;sequence>
030:         *         &lt;element name="shipTo" type="{http://www.geotools.org/po}USAddress"/>
031:         *         &lt;element name="billTo" type="{http://www.geotools.org/po}USAddress"/>
032:         *         &lt;element ref="{http://www.geotools.org/po}comment" minOccurs="0"/>
033:         *         &lt;element name="items" type="{http://www.geotools.org/po}Items"/>
034:         *       &lt;/sequence>
035:         *       &lt;attribute name="orderDate" type="{http://www.w3.org/2001/XMLSchema}date" />
036:         *     &lt;/restriction>
037:         *   &lt;/complexContent>
038:         * &lt;/complexType>
039:         * </pre>
040:         * 
041:         * 
042:         */
043:        @XmlAccessorType(AccessType.FIELD)
044:        @XmlType(name="PurchaseOrderType",propOrder={"shipTo","billTo","comment","items"})
045:        public class PurchaseOrderType {
046:
047:            protected USAddress shipTo;
048:            protected USAddress billTo;
049:            @XmlElement(namespace="http://www.geotools.org/po")
050:            protected String comment;
051:            protected Items items;
052:            @XmlAttribute
053:            protected XMLGregorianCalendar orderDate;
054:
055:            /**
056:             * Gets the value of the shipTo property.
057:             * 
058:             * @return
059:             *     possible object is
060:             *     {@link USAddress }
061:             *     
062:             */
063:            public USAddress getShipTo() {
064:                return shipTo;
065:            }
066:
067:            /**
068:             * Sets the value of the shipTo property.
069:             * 
070:             * @param value
071:             *     allowed object is
072:             *     {@link USAddress }
073:             *     
074:             */
075:            public void setShipTo(USAddress value) {
076:                this .shipTo = value;
077:            }
078:
079:            /**
080:             * Gets the value of the billTo property.
081:             * 
082:             * @return
083:             *     possible object is
084:             *     {@link USAddress }
085:             *     
086:             */
087:            public USAddress getBillTo() {
088:                return billTo;
089:            }
090:
091:            /**
092:             * Sets the value of the billTo property.
093:             * 
094:             * @param value
095:             *     allowed object is
096:             *     {@link USAddress }
097:             *     
098:             */
099:            public void setBillTo(USAddress value) {
100:                this .billTo = value;
101:            }
102:
103:            /**
104:             * Gets the value of the comment property.
105:             * 
106:             * @return
107:             *     possible object is
108:             *     {@link String }
109:             *     
110:             */
111:            public String getComment() {
112:                return comment;
113:            }
114:
115:            /**
116:             * Sets the value of the comment property.
117:             * 
118:             * @param value
119:             *     allowed object is
120:             *     {@link String }
121:             *     
122:             */
123:            public void setComment(String value) {
124:                this .comment = value;
125:            }
126:
127:            /**
128:             * Gets the value of the items property.
129:             * 
130:             * @return
131:             *     possible object is
132:             *     {@link Items }
133:             *     
134:             */
135:            public Items getItems() {
136:                return items;
137:            }
138:
139:            /**
140:             * Sets the value of the items property.
141:             * 
142:             * @param value
143:             *     allowed object is
144:             *     {@link Items }
145:             *     
146:             */
147:            public void setItems(Items value) {
148:                this .items = value;
149:            }
150:
151:            /**
152:             * Gets the value of the orderDate property.
153:             * 
154:             * @return
155:             *     possible object is
156:             *     {@link XMLGregorianCalendar }
157:             *     
158:             */
159:            public XMLGregorianCalendar getOrderDate() {
160:                return orderDate;
161:            }
162:
163:            /**
164:             * Sets the value of the orderDate property.
165:             * 
166:             * @param value
167:             *     allowed object is
168:             *     {@link XMLGregorianCalendar }
169:             *     
170:             */
171:            public void setOrderDate(XMLGregorianCalendar value) {
172:                this.orderDate = value;
173:            }
174:
175:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.