Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
TModelBag |
|
| 0.0;0 |
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 | |
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: 2009.07.19 at 09:49:41 PM CDT | |
6 | // | |
7 | ||
8 | ||
9 | package org.apache.ws.scout.model.uddi.v2; | |
10 | ||
11 | import java.util.ArrayList; | |
12 | import java.util.List; | |
13 | ||
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.XmlType; | |
18 | ||
19 | ||
20 | /** | |
21 | * <p>Java class for tModelBag complex type. | |
22 | * | |
23 | * <p>The following schema fragment specifies the expected content contained within this class. | |
24 | * | |
25 | * <pre> | |
26 | * <complexType name="tModelBag"> | |
27 | * <complexContent> | |
28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
29 | * <sequence> | |
30 | * <element ref="{urn:uddi-org:api_v2}tModelKey" maxOccurs="unbounded"/> | |
31 | * </sequence> | |
32 | * </restriction> | |
33 | * </complexContent> | |
34 | * </complexType> | |
35 | * </pre> | |
36 | * | |
37 | * | |
38 | */ | |
39 | @XmlAccessorType(XmlAccessType.FIELD) | |
40 | @XmlType(name = "tModelBag", propOrder = { | |
41 | "tModelKey" | |
42 | }) | |
43 | 0 | public class TModelBag { |
44 | ||
45 | @XmlElement(required = true) | |
46 | protected List<String> tModelKey; | |
47 | ||
48 | /** | |
49 | * Gets the value of the tModelKey property. | |
50 | * | |
51 | * <p> | |
52 | * This accessor method returns a reference to the live list, | |
53 | * not a snapshot. Therefore any modification you make to the | |
54 | * returned list will be present inside the JAXB object. | |
55 | * This is why there is not a <CODE>set</CODE> method for the tModelKey property. | |
56 | * | |
57 | * <p> | |
58 | * For example, to add a new item, do as follows: | |
59 | * <pre> | |
60 | * getTModelKey().add(newItem); | |
61 | * </pre> | |
62 | * | |
63 | * | |
64 | * <p> | |
65 | * Objects of the following type(s) are allowed in the list | |
66 | * {@link String } | |
67 | * | |
68 | * | |
69 | */ | |
70 | public List<String> getTModelKey() { | |
71 | 0 | if (tModelKey == null) { |
72 | 0 | tModelKey = new ArrayList<String>(); |
73 | } | |
74 | 0 | return this.tModelKey; |
75 | } | |
76 | ||
77 | } |