// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.08.29 at 12:55:12 PM CEST // package schemas.templatedefiner._goonyhwmeekedd8bbul2tg._40; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="IDs" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="base_Constraint" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
 *       <attribute name="targetIDScheme" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "ConstraintDoc") public class ConstraintDoc implements Comparable { @XmlAttribute(name = "valueSet", required = true) protected String valueSet; @XmlAttribute(name = "base_Constraint", required = true) protected String baseConstraint; public String getValueSet() { return valueSet; } public void setValueSet(String valueSet) { this.valueSet = valueSet; } public String getBaseConstraint() { return baseConstraint; } public void setBaseConstraint(String baseConstraint) { this.baseConstraint = baseConstraint; } @Override public int compareTo(ConstraintDoc o) { return this.valueSet.compareTo(o.valueSet); } }