// // 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 = "taml")
public class Taml {
@XmlAttribute(name = "IDs", required = true)
@XmlSchemaType(name = "anyURI")
protected String iDs;
@XmlAttribute(name = "base_Constraint", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String baseConstraint;
@XmlAttribute(name = "targetIDScheme", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String targetIDScheme;
/**
* Gets the value of the iDs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIDs() {
return iDs;
}
/**
* Sets the value of the iDs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIDs(String value) {
this.iDs = value;
}
/**
* Gets the value of the baseConstraint property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBaseConstraint() {
return baseConstraint;
}
/**
* Sets the value of the baseConstraint property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBaseConstraint(String value) {
this.baseConstraint = value;
}
/**
* Gets the value of the targetIDScheme property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTargetIDScheme() {
return targetIDScheme;
}
/**
* Sets the value of the targetIDScheme property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTargetIDScheme(String value) {
this.targetIDScheme = value;
}
}