KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > jaxb > employee > EmployeeWithInnerClassType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.4-b18-fcs
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.10.05 at 10:03:40 CEST
6
//
7

8
9 package net.sf.dozer.util.mapping.vo.jaxb.employee;
10
11
12 /**
13  * Java content class for anonymous complex type.
14  * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/Tools/dozer-2.3-src/dozer/dozer-src/etc/Employee.xsd line 13)
15  * <p>
16  * <pre>
17  * &lt;complexType>
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="FirstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
22  * &lt;element name="BirthDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
23  * &lt;element name="LastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
24  * &lt;element name="Address">
25  * &lt;complexType>
26  * &lt;complexContent>
27  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  * &lt;sequence>
29  * &lt;element name="Street" type="{http://www.w3.org/2001/XMLSchema}string"/>
30  * &lt;/sequence>
31  * &lt;/restriction>
32  * &lt;/complexContent>
33  * &lt;/complexType>
34  * &lt;/element>
35  * &lt;/sequence>
36  * &lt;/restriction>
37  * &lt;/complexContent>
38  * &lt;/complexType>
39  * </pre>
40  *
41  */

42 public interface EmployeeWithInnerClassType {
43
44
45     /**
46      * Gets the value of the birthDate property.
47      *
48      * @return
49      * possible object is
50      * {@link java.util.Calendar}
51      */

52     java.util.Calendar JavaDoc getBirthDate();
53
54     /**
55      * Sets the value of the birthDate property.
56      *
57      * @param value
58      * allowed object is
59      * {@link java.util.Calendar}
60      */

61     void setBirthDate(java.util.Calendar JavaDoc value);
62
63     /**
64      * Gets the value of the firstName property.
65      *
66      * @return
67      * possible object is
68      * {@link java.lang.String}
69      */

70     java.lang.String JavaDoc getFirstName();
71
72     /**
73      * Sets the value of the firstName property.
74      *
75      * @param value
76      * allowed object is
77      * {@link java.lang.String}
78      */

79     void setFirstName(java.lang.String JavaDoc value);
80
81     /**
82      * Gets the value of the address property.
83      *
84      * @return
85      * possible object is
86      * {@link net.sf.dozer.util.mapping.vo.jaxb.employee.EmployeeWithInnerClassType.AddressType}
87      */

88     net.sf.dozer.util.mapping.vo.jaxb.employee.EmployeeWithInnerClassType.AddressType getAddress();
89
90     /**
91      * Sets the value of the address property.
92      *
93      * @param value
94      * allowed object is
95      * {@link net.sf.dozer.util.mapping.vo.jaxb.employee.EmployeeWithInnerClassType.AddressType}
96      */

97     void setAddress(net.sf.dozer.util.mapping.vo.jaxb.employee.EmployeeWithInnerClassType.AddressType value);
98
99     /**
100      * Gets the value of the lastName property.
101      *
102      * @return
103      * possible object is
104      * {@link java.lang.String}
105      */

106     java.lang.String JavaDoc getLastName();
107
108     /**
109      * Sets the value of the lastName property.
110      *
111      * @param value
112      * allowed object is
113      * {@link java.lang.String}
114      */

115     void setLastName(java.lang.String JavaDoc value);
116
117
118     /**
119      * Java content class for anonymous complex type.
120      * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/Tools/dozer-2.3-src/dozer/dozer-src/etc/Employee.xsd line 20)
121      * <p>
122      * <pre>
123      * &lt;complexType>
124      * &lt;complexContent>
125      * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
126      * &lt;sequence>
127      * &lt;element name="Street" type="{http://www.w3.org/2001/XMLSchema}string"/>
128      * &lt;/sequence>
129      * &lt;/restriction>
130      * &lt;/complexContent>
131      * &lt;/complexType>
132      * </pre>
133      *
134      */

135     public interface AddressType {
136
137
138         /**
139          * Gets the value of the street property.
140          *
141          * @return
142          * possible object is
143          * {@link java.lang.String}
144          */

145         java.lang.String JavaDoc getStreet();
146
147         /**
148          * Sets the value of the street property.
149          *
150          * @param value
151          * allowed object is
152          * {@link java.lang.String}
153          */

154         void setStreet(java.lang.String JavaDoc value);
155
156     }
157
158 }
159
Popular Tags