Subversion Repositories XServices

Rev

Rev 129 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
125 brianR 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
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: 2012.11.14 at 07:35:52 AM MEZ
6
//
7
 
8
 
9
package net.brutex.xservices.types.scm;
10
 
11
import java.io.Serializable;
12
import java.util.ArrayList;
13
import java.util.List;
14
import javax.xml.bind.annotation.XmlAccessType;
15
import javax.xml.bind.annotation.XmlAccessorType;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlRootElement;
18
import javax.xml.bind.annotation.XmlType;
19
 
20
 
21
/**
22
 * <p>Java class for anonymous complex type.
23
 *
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 *
26
 * <pre>
27
 * &lt;complexType>
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
31
 *         &lt;element name="Item" type="{http://ws.brutex.net/SCMTypes}ItemType" maxOccurs="unbounded" minOccurs="0"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 *
38
 *
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "", propOrder = {
42
    "items"
43
})
44
@XmlRootElement(name = "ItemListType")
45
public class ItemListType
46
    implements Serializable
47
{
48
 
49
    private final static long serialVersionUID = 19800606L;
50
    @XmlElement(name = "Item")
51
    protected List<ItemType> items;
52
 
53
    /**
54
     * Gets the value of the items property.
55
     *
56
     * <p>
57
     * This accessor method returns a reference to the live list,
58
     * not a snapshot. Therefore any modification you make to the
59
     * returned list will be present inside the JAXB object.
60
     * This is why there is not a <CODE>set</CODE> method for the items property.
61
     *
62
     * <p>
63
     * For example, to add a new item, do as follows:
64
     * <pre>
65
     *    getItems().add(newItem);
66
     * </pre>
67
     *
68
     *
69
     * <p>
70
     * Objects of the following type(s) are allowed in the list
71
     * {@link ItemType }
72
     *
73
     *
74
     */
75
    public List<ItemType> getItems() {
76
        if (items == null) {
77
            items = new ArrayList<ItemType>();
78
        }
79
        return this.items;
80
    }
81
 
82
}