summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/CountryClient/build/generated-sources/jax-ws/org/oorsprong/websamples/TCountryCodeAndNameGroupedByContinent.java
diff options
context:
space:
mode:
Diffstat (limited to 'Year_3/TSDWL/WSDL/CountryClient/build/generated-sources/jax-ws/org/oorsprong/websamples/TCountryCodeAndNameGroupedByContinent.java')
-rw-r--r--Year_3/TSDWL/WSDL/CountryClient/build/generated-sources/jax-ws/org/oorsprong/websamples/TCountryCodeAndNameGroupedByContinent.java90
1 files changed, 90 insertions, 0 deletions
diff --git a/Year_3/TSDWL/WSDL/CountryClient/build/generated-sources/jax-ws/org/oorsprong/websamples/TCountryCodeAndNameGroupedByContinent.java b/Year_3/TSDWL/WSDL/CountryClient/build/generated-sources/jax-ws/org/oorsprong/websamples/TCountryCodeAndNameGroupedByContinent.java
new file mode 100644
index 0000000..b9352a0
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/CountryClient/build/generated-sources/jax-ws/org/oorsprong/websamples/TCountryCodeAndNameGroupedByContinent.java
@@ -0,0 +1,90 @@
+
+package org.oorsprong.websamples;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for tCountryCodeAndNameGroupedByContinent complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="tCountryCodeAndNameGroupedByContinent">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="Continent" type="{http://www.oorsprong.org/websamples.countryinfo}tContinent"/>
+ * &lt;element name="CountryCodeAndNames" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryCodeAndName"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "tCountryCodeAndNameGroupedByContinent", propOrder = {
+ "continent",
+ "countryCodeAndNames"
+})
+public class TCountryCodeAndNameGroupedByContinent {
+
+ @XmlElement(name = "Continent", required = true)
+ protected TContinent continent;
+ @XmlElement(name = "CountryCodeAndNames", required = true)
+ protected ArrayOftCountryCodeAndName countryCodeAndNames;
+
+ /**
+ * Gets the value of the continent property.
+ *
+ * @return
+ * possible object is
+ * {@link TContinent }
+ *
+ */
+ public TContinent getContinent() {
+ return continent;
+ }
+
+ /**
+ * Sets the value of the continent property.
+ *
+ * @param value
+ * allowed object is
+ * {@link TContinent }
+ *
+ */
+ public void setContinent(TContinent value) {
+ this.continent = value;
+ }
+
+ /**
+ * Gets the value of the countryCodeAndNames property.
+ *
+ * @return
+ * possible object is
+ * {@link ArrayOftCountryCodeAndName }
+ *
+ */
+ public ArrayOftCountryCodeAndName getCountryCodeAndNames() {
+ return countryCodeAndNames;
+ }
+
+ /**
+ * Sets the value of the countryCodeAndNames property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ArrayOftCountryCodeAndName }
+ *
+ */
+ public void setCountryCodeAndNames(ArrayOftCountryCodeAndName value) {
+ this.countryCodeAndNames = value;
+ }
+
+}