1
2
3
4
5
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 * <complexType name="entryType">
20 * <complexContent>
21 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22 * <sequence>
23 * <element name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
24 * <element name="duration" type="{http://www.w3.org/2001/XMLSchema}long"/>
25 * <element name="project" type="{http://www.w3.org/2001/XMLSchema}string"/>
26 * <element name="task" type="{http://www.w3.org/2001/XMLSchema}string"/>
27 * <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * </sequence>
29 * </restriction>
30 * </complexContent>
31 * </complexType>
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 }