Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/src/main/java/com/heuristiclab/okb/wsclient/admin/ArrayOfPlatform.java @ 5761

Last change on this file since 5761 was 5761, checked in by mholper, 13 years ago

first Unit-Test build against new AdministrationService #1441

File size: 2.1 KB
Line 
1
2package com.heuristiclab.okb.wsclient.admin;
3
4import java.util.ArrayList;
5import java.util.List;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import javax.xml.bind.annotation.XmlType;
10
11
12/**
13 * <p>Java class for ArrayOfPlatform complex type.
14 *
15 * <p>The following schema fragment specifies the expected content contained within this class.
16 *
17 * <pre>
18 * &lt;complexType name="ArrayOfPlatform">
19 *   &lt;complexContent>
20 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 *       &lt;sequence>
22 *         &lt;element name="Platform" type="{http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration.DataTransfer}Platform" maxOccurs="unbounded" minOccurs="0"/>
23 *       &lt;/sequence>
24 *     &lt;/restriction>
25 *   &lt;/complexContent>
26 * &lt;/complexType>
27 * </pre>
28 *
29 *
30 */
31@XmlAccessorType(XmlAccessType.FIELD)
32@XmlType(name = "ArrayOfPlatform", namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration.DataTransfer", propOrder = {
33    "platform"
34})
35public class ArrayOfPlatform {
36
37    @XmlElement(name = "Platform", nillable = true)
38    protected List<Platform> platform;
39
40    /**
41     * Gets the value of the platform property.
42     *
43     * <p>
44     * This accessor method returns a reference to the live list,
45     * not a snapshot. Therefore any modification you make to the
46     * returned list will be present inside the JAXB object.
47     * This is why there is not a <CODE>set</CODE> method for the platform property.
48     *
49     * <p>
50     * For example, to add a new item, do as follows:
51     * <pre>
52     *    getPlatform().add(newItem);
53     * </pre>
54     *
55     *
56     * <p>
57     * Objects of the following type(s) are allowed in the list
58     * {@link Platform }
59     *
60     *
61     */
62    public List<Platform> getPlatform() {
63        if (platform == null) {
64            platform = new ArrayList<Platform>();
65        }
66        return this.platform;
67    }
68
69}
Note: See TracBrowser for help on using the repository browser.