io.github.oliviercailloux.xmcda_2_2_1_jaxb.X2CriterionReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmcda-2.2.1-jaxb Show documentation
Show all versions of xmcda-2.2.1-jaxb Show documentation
Java source for (un)marshalling XMCDA-2.2.1 files, JAXB-generated from the schema.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.11.10 at 09:49:41 PM CET
//
package io.github.oliviercailloux.xmcda_2_2_1_jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Generic type for criterion, coalition and list of criteria references.
*
* Java class for criterionReference complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="criterionReference">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="criterionID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="criteriaSetID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="criteriaSet" type="{http://www.decision-deck.org/2012/XMCDA-2.2.1}criteriaSet"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "criterionReference", propOrder = {
"criterionID",
"criteriaSetID",
"criteriaSet"
})
public class X2CriterionReference {
protected String criterionID;
protected String criteriaSetID;
protected X2CriteriaSet criteriaSet;
/**
* Gets the value of the criterionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCriterionID() {
return criterionID;
}
/**
* Sets the value of the criterionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCriterionID(String value) {
this.criterionID = value;
}
/**
* Gets the value of the criteriaSetID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCriteriaSetID() {
return criteriaSetID;
}
/**
* Sets the value of the criteriaSetID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCriteriaSetID(String value) {
this.criteriaSetID = value;
}
/**
* Gets the value of the criteriaSet property.
*
* @return
* possible object is
* {@link X2CriteriaSet }
*
*/
public X2CriteriaSet getCriteriaSet() {
return criteriaSet;
}
/**
* Sets the value of the criteriaSet property.
*
* @param value
* allowed object is
* {@link X2CriteriaSet }
*
*/
public void setCriteriaSet(X2CriteriaSet value) {
this.criteriaSet = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy