summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/FootballClient/build/generated/jax-wsCache/info/https/footballpool_dataaccess/ArrayOfdate.java
diff options
context:
space:
mode:
Diffstat (limited to 'Year_3/TSDWL/WSDL/FootballClient/build/generated/jax-wsCache/info/https/footballpool_dataaccess/ArrayOfdate.java')
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/generated/jax-wsCache/info/https/footballpool_dataaccess/ArrayOfdate.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/Year_3/TSDWL/WSDL/FootballClient/build/generated/jax-wsCache/info/https/footballpool_dataaccess/ArrayOfdate.java b/Year_3/TSDWL/WSDL/FootballClient/build/generated/jax-wsCache/info/https/footballpool_dataaccess/ArrayOfdate.java
deleted file mode 100644
index 9aa3007..0000000
--- a/Year_3/TSDWL/WSDL/FootballClient/build/generated/jax-wsCache/info/https/footballpool_dataaccess/ArrayOfdate.java
+++ /dev/null
@@ -1,72 +0,0 @@
-
-package https.footballpool_dataaccess;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-
-
-/**
- * <p>Java class for ArrayOfdate complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="ArrayOfdate">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="date" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ArrayOfdate", propOrder = {
- "date"
-})
-public class ArrayOfdate {
-
- @XmlElement(nillable = true)
- @XmlSchemaType(name = "date")
- protected List<XMLGregorianCalendar> date;
-
- /**
- * Gets the value of the date property.
- *
- * <p>
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a <CODE>set</CODE> method for the date property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getDate().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
- *
- *
- */
- public List<XMLGregorianCalendar> getDate() {
- if (date == null) {
- date = new ArrayList<XMLGregorianCalendar>();
- }
- return this.date;
- }
-
-}