Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AddressLine |
|
| 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.XmlType; | |
15 | import javax.xml.bind.annotation.XmlValue; | |
16 | ||
17 | ||
18 | /** | |
19 | * <p>Java class for addressLine complex type. | |
20 | * | |
21 | * <p>The following schema fragment specifies the expected content contained within this class. | |
22 | * | |
23 | * <pre> | |
24 | * <complexType name="addressLine"> | |
25 | * <simpleContent> | |
26 | * <extension base="<http://www.w3.org/2001/XMLSchema>string"> | |
27 | * <attribute name="keyName" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
28 | * <attribute name="keyValue" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
29 | * </extension> | |
30 | * </simpleContent> | |
31 | * </complexType> | |
32 | * </pre> | |
33 | * | |
34 | * | |
35 | */ | |
36 | @XmlAccessorType(XmlAccessType.FIELD) | |
37 | @XmlType(name = "addressLine", propOrder = { | |
38 | "value" | |
39 | }) | |
40 | 0 | public class AddressLine { |
41 | ||
42 | @XmlValue | |
43 | protected String value; | |
44 | @XmlAttribute | |
45 | protected String keyName; | |
46 | @XmlAttribute | |
47 | protected String keyValue; | |
48 | ||
49 | /** | |
50 | * Gets the value of the value property. | |
51 | * | |
52 | * @return | |
53 | * possible object is | |
54 | * {@link String } | |
55 | * | |
56 | */ | |
57 | public String getValue() { | |
58 | 0 | return value; |
59 | } | |
60 | ||
61 | /** | |
62 | * Sets the value of the value property. | |
63 | * | |
64 | * @param value | |
65 | * allowed object is | |
66 | * {@link String } | |
67 | * | |
68 | */ | |
69 | public void setValue(String value) { | |
70 | 0 | this.value = value; |
71 | 0 | } |
72 | ||
73 | /** | |
74 | * Gets the value of the keyName property. | |
75 | * | |
76 | * @return | |
77 | * possible object is | |
78 | * {@link String } | |
79 | * | |
80 | */ | |
81 | public String getKeyName() { | |
82 | 0 | return keyName; |
83 | } | |
84 | ||
85 | /** | |
86 | * Sets the value of the keyName property. | |
87 | * | |
88 | * @param value | |
89 | * allowed object is | |
90 | * {@link String } | |
91 | * | |
92 | */ | |
93 | public void setKeyName(String value) { | |
94 | 0 | this.keyName = value; |
95 | 0 | } |
96 | ||
97 | /** | |
98 | * Gets the value of the keyValue property. | |
99 | * | |
100 | * @return | |
101 | * possible object is | |
102 | * {@link String } | |
103 | * | |
104 | */ | |
105 | public String getKeyValue() { | |
106 | 0 | return keyValue; |
107 | } | |
108 | ||
109 | /** | |
110 | * Sets the value of the keyValue property. | |
111 | * | |
112 | * @param value | |
113 | * allowed object is | |
114 | * {@link String } | |
115 | * | |
116 | */ | |
117 | public void setKeyValue(String value) { | |
118 | 0 | this.keyValue = value; |
119 | 0 | } |
120 | ||
121 | } |