// // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2024.10.27 at 05:48:07 PM CET // package de.uni_freiburg.informatik.ultimate.test.benchexec.benchmark; 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.XmlValue; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;attribute name="cpuModel" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /&gt; * &lt;attribute name="cpuCores" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="1" /&gt; * &lt;attribute name="memory" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="1" /&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "require") public class Require { @XmlValue protected String content; @XmlAttribute(name = "cpuModel") @XmlSchemaType(name = "anySimpleType") protected String cpuModel; @XmlAttribute(name = "cpuCores") @XmlSchemaType(name = "anySimpleType") protected String cpuCores; @XmlAttribute(name = "memory") @XmlSchemaType(name = "anySimpleType") protected String memory; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the cpuModel property. * * @return * possible object is * {@link String } * */ public String getCpuModel() { return cpuModel; } /** * Sets the value of the cpuModel property. * * @param value * allowed object is * {@link String } * */ public void setCpuModel(String value) { this.cpuModel = value; } /** * Gets the value of the cpuCores property. * * @return * possible object is * {@link String } * */ public String getCpuCores() { if (cpuCores == null) { return "1"; } else { return cpuCores; } } /** * Sets the value of the cpuCores property. * * @param value * allowed object is * {@link String } * */ public void setCpuCores(String value) { this.cpuCores = value; } /** * Gets the value of the memory property. * * @return * possible object is * {@link String } * */ public String getMemory() { if (memory == null) { return "1"; } else { return memory; } } /** * Sets the value of the memory property. * * @param value * allowed object is * {@link String } * */ public void setMemory(String value) { this.memory = value; } }