1
2
3
4
5
6
7
8 package de.nierbeck.timeTrack.model;
9
10 /***
11 * Java content class for anonymous 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 4)
16 * <p>
17 *
18 * <pre>
19 * <complexType>
20 * <complexContent>
21 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22 * <sequence>
23 * <element name="currentSelected" type="{}entryType"/>
24 * <element name="entry" type="{}entryType" maxOccurs="unbounded"/>
25 * </sequence>
26 * </restriction>
27 * </complexContent>
28 * </complexType>
29 * </pre>
30 *
31 */
32 public interface EntriesType {
33
34 /***
35 * Gets the value of the currentSelected property.
36 *
37 * @return possible object is {@link de.nierbeck.timeTrack.model.EntryType}
38 */
39 de.nierbeck.timeTrack.model.EntryType getCurrentSelected();
40
41 /***
42 * Sets the value of the currentSelected property.
43 *
44 * @param value
45 * allowed object is
46 * {@link de.nierbeck.timeTrack.model.EntryType}
47 */
48 void setCurrentSelected(de.nierbeck.timeTrack.model.EntryType value);
49
50 /***
51 * Gets the value of the Entry property.
52 *
53 * <p>
54 * This accessor method returns a reference to the live list, not a
55 * snapshot. Therefore any modification you make to the returned list will
56 * be present inside the JAXB object. This is why there is not a <CODE>set</CODE>
57 * method for the Entry property.
58 *
59 * <p>
60 * For example, to add a new item, do as follows:
61 *
62 * <pre>
63 * getEntry().add(newItem);
64 * </pre>
65 *
66 *
67 * <p>
68 * Objects of the following type(s) are allowed in the list
69 * {@link de.nierbeck.timeTrack.model.EntryType}
70 *
71 */
72 java.util.List getEntry();
73
74 }