|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
OneWayCall.java | 0% | 0% | 0% | 0% |
|
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs | |
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: 2007.04.08 at 11:11:24 AM CEST | |
6 | // | |
7 | ||
8 | ||
9 | package jtr.test.jee.ping.client; | |
10 | ||
11 | import java.util.ArrayList; | |
12 | import java.util.List; | |
13 | import javax.xml.bind.annotation.XmlAccessType; | |
14 | import javax.xml.bind.annotation.XmlAccessorType; | |
15 | import javax.xml.bind.annotation.XmlType; | |
16 | ||
17 | ||
18 | /** | |
19 | * <p>Java class for oneWayCall complex type. | |
20 | * | |
21 | * <p>The following schema fragment specifies the expected content contained within this class. | |
22 | * | |
23 | * <pre> | |
24 | * <complexType name="oneWayCall"> | |
25 | * <complexContent> | |
26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
27 | * <sequence> | |
28 | * <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
29 | * </sequence> | |
30 | * </restriction> | |
31 | * </complexContent> | |
32 | * </complexType> | |
33 | * </pre> | |
34 | * | |
35 | * | |
36 | */ | |
37 | @XmlAccessorType(XmlAccessType.FIELD) | |
38 | @XmlType(name = "oneWayCall", propOrder = { | |
39 | "arg0" | |
40 | }) | |
41 | public class OneWayCall { | |
42 | ||
43 | protected List<String> arg0; | |
44 | ||
45 | /** | |
46 | * Gets the value of the arg0 property. | |
47 | * | |
48 | * <p> | |
49 | * This accessor method returns a reference to the live list, | |
50 | * not a snapshot. Therefore any modification you make to the | |
51 | * returned list will be present inside the JAXB object. | |
52 | * This is why there is not a <CODE>set</CODE> method for the arg0 property. | |
53 | * | |
54 | * <p> | |
55 | * For example, to add a new item, do as follows: | |
56 | * <pre> | |
57 | * getArg0().add(newItem); | |
58 | * </pre> | |
59 | * | |
60 | * | |
61 | * <p> | |
62 | * Objects of the following type(s) are allowed in the list | |
63 | * {@link String } | |
64 | * | |
65 | * | |
66 | */ | |
67 | 0 | public List<String> getArg0() { |
68 | 0 | if (arg0 == null) { |
69 | 0 | arg0 = new ArrayList<String>(); |
70 | } | |
71 | 0 | return this.arg0; |
72 | } | |
73 | ||
74 | } |
|