View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v@@BUILD_VERSION@@ 
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: 2005.06.30 um 05:21:08 CEST 
6   //
7   
8   package de.nierbeck.timeTrack.model;
9   
10  /***
11   * Java content class for entryType complex type.
12   * <p>
13   * The following schema fragment specifies the expected content contained within
14   * this java content object. (defined at
15   * file:/G:/workspace/TimeTrackPlugin2/schema/timetrack.xsd line 11)
16   * <p>
17   * 
18   * <pre>
19   *     &lt;complexType name=&quot;entryType&quot;&gt;
20   *       &lt;complexContent&gt;
21   *         &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
22   *           &lt;sequence&gt;
23   *             &lt;element name=&quot;startTime&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}dateTime&quot;/&gt;
24   *             &lt;element name=&quot;duration&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}long&quot;/&gt;
25   *             &lt;element name=&quot;project&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot;/&gt;
26   *             &lt;element name=&quot;task&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot;/&gt;
27   *             &lt;element name=&quot;comment&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot;/&gt;
28   *           &lt;/sequence&gt;
29   *         &lt;/restriction&gt;
30   *       &lt;/complexContent&gt;
31   *     &lt;/complexType&gt;
32   * </pre>
33   * 
34   */
35  public interface EntryType {
36  
37  	/***
38  	 * Gets the value of the task property.
39  	 * 
40  	 * @return possible object is {@link java.lang.String}
41  	 */
42  	java.lang.String getTask();
43  
44  	/***
45  	 * Sets the value of the task property.
46  	 * 
47  	 * @param value
48  	 *            allowed object is {@link java.lang.String}
49  	 */
50  	void setTask(java.lang.String value);
51  
52  	/***
53  	 * Gets the value of the startTime property.
54  	 * 
55  	 * @return possible object is {@link java.util.Calendar}
56  	 */
57  	java.util.Calendar getStartTime();
58  
59  	/***
60  	 * Sets the value of the startTime property.
61  	 * 
62  	 * @param value
63  	 *            allowed object is {@link java.util.Calendar}
64  	 */
65  	void setStartTime(java.util.Calendar value);
66  
67  	/***
68  	 * Gets the value of the comment property.
69  	 * 
70  	 * @return possible object is {@link java.lang.String}
71  	 */
72  	java.lang.String getComment();
73  
74  	/***
75  	 * Sets the value of the comment property.
76  	 * 
77  	 * @param value
78  	 *            allowed object is {@link java.lang.String}
79  	 */
80  	void setComment(java.lang.String value);
81  
82  	/***
83  	 * Gets the value of the duration property.
84  	 * 
85  	 */
86  	long getDuration();
87  
88  	/***
89  	 * Sets the value of the duration property.
90  	 * 
91  	 */
92  	void setDuration(long value);
93  
94  	/***
95  	 * Gets the value of the project property.
96  	 * 
97  	 * @return possible object is {@link java.lang.String}
98  	 */
99  	java.lang.String getProject();
100 
101 	/***
102 	 * Sets the value of the project property.
103 	 * 
104 	 * @param value
105 	 *            allowed object is {@link java.lang.String}
106 	 */
107 	void setProject(java.lang.String value);
108 
109 }