Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
TModelInfo |
|
| 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 javax.xml.bind.annotation.XmlAccessType; | |
12 | import javax.xml.bind.annotation.XmlAccessorType; | |
13 | import javax.xml.bind.annotation.XmlAttribute; | |
14 | import javax.xml.bind.annotation.XmlElement; | |
15 | import javax.xml.bind.annotation.XmlType; | |
16 | ||
17 | ||
18 | /** | |
19 | * <p>Java class for tModelInfo complex type. | |
20 | * | |
21 | * <p>The following schema fragment specifies the expected content contained within this class. | |
22 | * | |
23 | * <pre> | |
24 | * <complexType name="tModelInfo"> | |
25 | * <complexContent> | |
26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
27 | * <sequence> | |
28 | * <element ref="{urn:uddi-org:api_v2}name"/> | |
29 | * </sequence> | |
30 | * <attribute name="tModelKey" use="required" type="{urn:uddi-org:api_v2}tModelKey" /> | |
31 | * </restriction> | |
32 | * </complexContent> | |
33 | * </complexType> | |
34 | * </pre> | |
35 | * | |
36 | * | |
37 | */ | |
38 | @XmlAccessorType(XmlAccessType.FIELD) | |
39 | @XmlType(name = "tModelInfo", propOrder = { | |
40 | "name" | |
41 | }) | |
42 | 0 | public class TModelInfo { |
43 | ||
44 | @XmlElement(required = true) | |
45 | protected Name name; | |
46 | @XmlAttribute(required = true) | |
47 | protected String tModelKey; | |
48 | ||
49 | /** | |
50 | * Gets the value of the name property. | |
51 | * | |
52 | * @return | |
53 | * possible object is | |
54 | * {@link Name } | |
55 | * | |
56 | */ | |
57 | public Name getName() { | |
58 | 0 | return name; |
59 | } | |
60 | ||
61 | /** | |
62 | * Sets the value of the name property. | |
63 | * | |
64 | * @param value | |
65 | * allowed object is | |
66 | * {@link Name } | |
67 | * | |
68 | */ | |
69 | public void setName(Name value) { | |
70 | 0 | this.name = value; |
71 | 0 | } |
72 | ||
73 | /** | |
74 | * Gets the value of the tModelKey property. | |
75 | * | |
76 | * @return | |
77 | * possible object is | |
78 | * {@link String } | |
79 | * | |
80 | */ | |
81 | public String getTModelKey() { | |
82 | 0 | return tModelKey; |
83 | } | |
84 | ||
85 | /** | |
86 | * Sets the value of the tModelKey property. | |
87 | * | |
88 | * @param value | |
89 | * allowed object is | |
90 | * {@link String } | |
91 | * | |
92 | */ | |
93 | public void setTModelKey(String value) { | |
94 | 0 | this.tModelKey = value; |
95 | 0 | } |
96 | ||
97 | } |