KickJava   Java API By Example, From Geeks To Geeks.

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


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 EmployeeType 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 3)
15  * <p>
16  * <pre>
17  * &lt;complexType name="EmployeeType">
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;/sequence>
25  * &lt;/restriction>
26  * &lt;/complexContent>
27  * &lt;/complexType>
28  * </pre>
29  *
30  */

31 public interface EmployeeType {
32
33
34     /**
35      * Gets the value of the birthDate property.
36      *
37      * @return
38      * possible object is
39      * {@link java.util.Calendar}
40      */

41     java.util.Calendar JavaDoc getBirthDate();
42
43     /**
44      * Sets the value of the birthDate property.
45      *
46      * @param value
47      * allowed object is
48      * {@link java.util.Calendar}
49      */

50     void setBirthDate(java.util.Calendar JavaDoc value);
51
52     /**
53      * Gets the value of the firstName property.
54      *
55      * @return
56      * possible object is
57      * {@link java.lang.String}
58      */

59     java.lang.String JavaDoc getFirstName();
60
61     /**
62      * Sets the value of the firstName property.
63      *
64      * @param value
65      * allowed object is
66      * {@link java.lang.String}
67      */

68     void setFirstName(java.lang.String JavaDoc value);
69
70     /**
71      * Gets the value of the lastName property.
72      *
73      * @return
74      * possible object is
75      * {@link java.lang.String}
76      */

77     java.lang.String JavaDoc getLastName();
78
79     /**
80      * Sets the value of the lastName property.
81      *
82      * @param value
83      * allowed object is
84      * {@link java.lang.String}
85      */

86     void setLastName(java.lang.String JavaDoc value);
87
88 }
89
Popular Tags