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.XmlType;
17
 
18
 
19
/**
20
 * <p>Java class for ModuleListType complex type.
21
 *
22
 * <p>The following schema fragment specifies the expected content contained within this class.
23
 *
24
 * <pre>
25
 * &lt;complexType name="ModuleListType">
26
 *   &lt;complexContent>
27
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28
 *       &lt;sequence>
29
 *         &lt;element name="modules" type="{http://ws.brutex.net/SCMTypes}ModuleType" maxOccurs="unbounded" minOccurs="0"/>
30
 *       &lt;/sequence>
31
 *     &lt;/restriction>
32
 *   &lt;/complexContent>
33
 * &lt;/complexType>
34
 * </pre>
35
 *
36
 *
37
 */
38
@XmlAccessorType(XmlAccessType.FIELD)
39
@XmlType(name = "ModuleListType", propOrder = {
40
    "modules"
41
})
42
public class ModuleListType
43
    implements Serializable
44
{
45
 
46
    private final static long serialVersionUID = 19800606L;
47
    protected List<ModuleType> modules;
48
 
49
    /**
50
     * Gets the value of the modules property.
51
     *
52
     * <p>
53
     * This accessor method returns a reference to the live list,
54
     * not a snapshot. Therefore any modification you make to the
55
     * returned list will be present inside the JAXB object.
56
     * This is why there is not a <CODE>set</CODE> method for the modules property.
57
     *
58
     * <p>
59
     * For example, to add a new item, do as follows:
60
     * <pre>
61
     *    getModules().add(newItem);
62
     * </pre>
63
     *
64
     *
65
     * <p>
66
     * Objects of the following type(s) are allowed in the list
67
     * {@link ModuleType }
68
     *
69
     *
70
     */
71
    public List<ModuleType> getModules() {
72
        if (modules == null) {
73
            modules = new ArrayList<ModuleType>();
74
        }
75
        return this.modules;
76
    }
77
 
78
}