-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to be able to compile (removed reference to nonexisting paren…
…t pom, etc.)
- Loading branch information
Fernando Gonzalez
committed
Feb 11, 2014
1 parent
4912353
commit 8ca23be
Showing
34 changed files
with
2,424 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
src/main/java/org/fao/unredd/charts/generated/DataType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
// | ||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63- | ||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | ||
// Any modifications to this file will be lost upon recompilation of the source schema. | ||
// Generated on: 2013.10.11 at 09:17:10 AM CEST | ||
// | ||
|
||
|
||
package org.fao.unredd.charts.generated; | ||
|
||
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.XmlAttribute; | ||
import javax.xml.bind.annotation.XmlElement; | ||
import javax.xml.bind.annotation.XmlType; | ||
|
||
|
||
/** | ||
* <p>Java class for DataType complex type. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* | ||
* <pre> | ||
* <complexType name="DataType"> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"/> | ||
* </sequence> | ||
* <attribute name="zone-id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* </pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "DataType", propOrder = { | ||
"value" | ||
}) | ||
public class DataType { | ||
|
||
@XmlElement(type = Double.class) | ||
protected List<Double> value; | ||
@XmlAttribute(name = "zone-id", required = true) | ||
protected String zoneId; | ||
|
||
/** | ||
* Gets the value of the value 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 value property. | ||
* | ||
* <p> | ||
* For example, to add a new item, do as follows: | ||
* <pre> | ||
* getValue().add(newItem); | ||
* </pre> | ||
* | ||
* | ||
* <p> | ||
* Objects of the following type(s) are allowed in the list | ||
* {@link Double } | ||
* | ||
* | ||
*/ | ||
public List<Double> getValue() { | ||
if (value == null) { | ||
value = new ArrayList<Double>(); | ||
} | ||
return this.value; | ||
} | ||
|
||
/** | ||
* Gets the value of the zoneId property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getZoneId() { | ||
return zoneId; | ||
} | ||
|
||
/** | ||
* Sets the value of the zoneId property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setZoneId(String value) { | ||
this.zoneId = value; | ||
} | ||
|
||
} |
76 changes: 76 additions & 0 deletions
76
src/main/java/org/fao/unredd/charts/generated/LabelType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// | ||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63- | ||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | ||
// Any modifications to this file will be lost upon recompilation of the source schema. | ||
// Generated on: 2013.10.11 at 09:17:10 AM CEST | ||
// | ||
|
||
|
||
package org.fao.unredd.charts.generated; | ||
|
||
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.XmlType; | ||
|
||
|
||
/** | ||
* <p>Java class for LabelType complex type. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* | ||
* <pre> | ||
* <complexType name="LabelType"> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> | ||
* </sequence> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* </pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "LabelType", propOrder = { | ||
"label" | ||
}) | ||
public class LabelType { | ||
|
||
@XmlElement(required = true) | ||
protected List<String> label; | ||
|
||
/** | ||
* Gets the value of the label 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 label property. | ||
* | ||
* <p> | ||
* For example, to add a new item, do as follows: | ||
* <pre> | ||
* getLabel().add(newItem); | ||
* </pre> | ||
* | ||
* | ||
* <p> | ||
* Objects of the following type(s) are allowed in the list | ||
* {@link String } | ||
* | ||
* | ||
*/ | ||
public List<String> getLabel() { | ||
if (label == null) { | ||
label = new ArrayList<String>(); | ||
} | ||
return this.label; | ||
} | ||
|
||
} |
63 changes: 63 additions & 0 deletions
63
src/main/java/org/fao/unredd/charts/generated/ObjectFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// | ||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63- | ||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | ||
// Any modifications to this file will be lost upon recompilation of the source schema. | ||
// Generated on: 2013.10.11 at 09:17:10 AM CEST | ||
// | ||
|
||
|
||
package org.fao.unredd.charts.generated; | ||
|
||
import javax.xml.bind.annotation.XmlRegistry; | ||
|
||
|
||
/** | ||
* This object contains factory methods for each | ||
* Java content interface and Java element interface | ||
* generated in the org.fao.unredd.charts.generated package. | ||
* <p>An ObjectFactory allows you to programatically | ||
* construct new instances of the Java representation | ||
* for XML content. The Java representation of XML | ||
* content can consist of schema derived interfaces | ||
* and classes representing the binding of schema | ||
* type definitions, element declarations and model | ||
* groups. Factory methods for each of these are | ||
* provided in this class. | ||
* | ||
*/ | ||
@XmlRegistry | ||
public class ObjectFactory { | ||
|
||
|
||
/** | ||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.fao.unredd.charts.generated | ||
* | ||
*/ | ||
public ObjectFactory() { | ||
} | ||
|
||
/** | ||
* Create an instance of {@link StatisticsChartInput } | ||
* | ||
*/ | ||
public StatisticsChartInput createStatisticsChartInput() { | ||
return new StatisticsChartInput(); | ||
} | ||
|
||
/** | ||
* Create an instance of {@link LabelType } | ||
* | ||
*/ | ||
public LabelType createLabelType() { | ||
return new LabelType(); | ||
} | ||
|
||
/** | ||
* Create an instance of {@link DataType } | ||
* | ||
*/ | ||
public DataType createDataType() { | ||
return new DataType(); | ||
} | ||
|
||
} |
Oops, something went wrong.