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 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   *     &lt;complexType&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;currentSelected&quot; type=&quot;{}entryType&quot;/&gt;
24   *             &lt;element name=&quot;entry&quot; type=&quot;{}entryType&quot; maxOccurs=&quot;unbounded&quot;/&gt;
25   *           &lt;/sequence&gt;
26   *         &lt;/restriction&gt;
27   *       &lt;/complexContent&gt;
28   *     &lt;/complexType&gt;
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  }