Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
TModelInstanceInfo |
|
| 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.XmlAttribute; | |
17 | import javax.xml.bind.annotation.XmlType; | |
18 | ||
19 | ||
20 | /** | |
21 | * <p>Java class for tModelInstanceInfo complex type. | |
22 | * | |
23 | * <p>The following schema fragment specifies the expected content contained within this class. | |
24 | * | |
25 | * <pre> | |
26 | * <complexType name="tModelInstanceInfo"> | |
27 | * <complexContent> | |
28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
29 | * <sequence> | |
30 | * <element ref="{urn:uddi-org:api_v2}description" maxOccurs="unbounded" minOccurs="0"/> | |
31 | * <element ref="{urn:uddi-org:api_v2}instanceDetails" minOccurs="0"/> | |
32 | * </sequence> | |
33 | * <attribute name="tModelKey" use="required" type="{urn:uddi-org:api_v2}tModelKey" /> | |
34 | * </restriction> | |
35 | * </complexContent> | |
36 | * </complexType> | |
37 | * </pre> | |
38 | * | |
39 | * | |
40 | */ | |
41 | @XmlAccessorType(XmlAccessType.FIELD) | |
42 | @XmlType(name = "tModelInstanceInfo", propOrder = { | |
43 | "description", | |
44 | "instanceDetails" | |
45 | }) | |
46 | 0 | public class TModelInstanceInfo { |
47 | ||
48 | protected List<Description> description; | |
49 | protected InstanceDetails instanceDetails; | |
50 | @XmlAttribute(required = true) | |
51 | protected String tModelKey; | |
52 | ||
53 | /** | |
54 | * Gets the value of the description 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 description property. | |
61 | * | |
62 | * <p> | |
63 | * For example, to add a new item, do as follows: | |
64 | * <pre> | |
65 | * getDescription().add(newItem); | |
66 | * </pre> | |
67 | * | |
68 | * | |
69 | * <p> | |
70 | * Objects of the following type(s) are allowed in the list | |
71 | * {@link Description } | |
72 | * | |
73 | * | |
74 | */ | |
75 | public List<Description> getDescription() { | |
76 | 0 | if (description == null) { |
77 | 0 | description = new ArrayList<Description>(); |
78 | } | |
79 | 0 | return this.description; |
80 | } | |
81 | ||
82 | /** | |
83 | * Gets the value of the instanceDetails property. | |
84 | * | |
85 | * @return | |
86 | * possible object is | |
87 | * {@link InstanceDetails } | |
88 | * | |
89 | */ | |
90 | public InstanceDetails getInstanceDetails() { | |
91 | 0 | return instanceDetails; |
92 | } | |
93 | ||
94 | /** | |
95 | * Sets the value of the instanceDetails property. | |
96 | * | |
97 | * @param value | |
98 | * allowed object is | |
99 | * {@link InstanceDetails } | |
100 | * | |
101 | */ | |
102 | public void setInstanceDetails(InstanceDetails value) { | |
103 | 0 | this.instanceDetails = value; |
104 | 0 | } |
105 | ||
106 | /** | |
107 | * Gets the value of the tModelKey property. | |
108 | * | |
109 | * @return | |
110 | * possible object is | |
111 | * {@link String } | |
112 | * | |
113 | */ | |
114 | public String getTModelKey() { | |
115 | 0 | return tModelKey; |
116 | } | |
117 | ||
118 | /** | |
119 | * Sets the value of the tModelKey property. | |
120 | * | |
121 | * @param value | |
122 | * allowed object is | |
123 | * {@link String } | |
124 | * | |
125 | */ | |
126 | public void setTModelKey(String value) { | |
127 | 0 | this.tModelKey = value; |
128 | 0 | } |
129 | ||
130 | } |