All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmcda.v2.AlternativeCriteriaValue Maven / Gradle / Ivy

There is a newer version: 0.9
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// 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.30 at 02:37:50 PM CET 
//


package org.xmcda.v2;

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;


/**
 * A row in a crosstable alternatives x criteria.
 * 
 * 

Java class for alternativeCriteriaValue complex type. * *

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

 * <complexType name="alternativeCriteriaValue">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="description" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}description" minOccurs="0"/>
 *         <element name="alternativeID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="criterionValue" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}criterionValue" maxOccurs="unbounded"/>
 *       </sequence>
 *       <attGroup ref="{http://www.decision-deck.org/2019/XMCDA-2.2.3}defaultAttributes"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "alternativeCriteriaValue", propOrder = { "description", "alternativeID", "criterionValue" }) public class AlternativeCriteriaValue { protected Description description; protected String alternativeID; @XmlElement(required = true) protected List criterionValue; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "mcdaConcept") protected String mcdaConcept; /** * Gets the value of the description property. * * @return * possible object is * {@link Description } * */ public Description getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link Description } * */ public void setDescription(Description value) { this.description = value; } /** * Gets the value of the alternativeID property. * * @return * possible object is * {@link String } * */ public String getAlternativeID() { return alternativeID; } /** * Sets the value of the alternativeID property. * * @param value * allowed object is * {@link String } * */ public void setAlternativeID(String value) { this.alternativeID = value; } /** * Gets the value of the criterionValue property. * *

* 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 set method for the criterionValue property. * *

* For example, to add a new item, do as follows: *

     *    getCriterionValue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CriterionValue } * * */ public List getCriterionValue() { if (criterionValue == null) { criterionValue = new ArrayList(); } return this.criterionValue; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the mcdaConcept property. * * @return * possible object is * {@link String } * */ public String getMcdaConcept() { return mcdaConcept; } /** * Sets the value of the mcdaConcept property. * * @param value * allowed object is * {@link String } * */ public void setMcdaConcept(String value) { this.mcdaConcept = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy