// // 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="title" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /&gt; * &lt;attribute name="numberOfDigits" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "column") public class Column { @XmlValue protected String content; @XmlAttribute(name = "title") @XmlSchemaType(name = "anySimpleType") protected String title; @XmlAttribute(name = "numberOfDigits") @XmlSchemaType(name = "anySimpleType") protected String numberOfDigits; /** * 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 title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the numberOfDigits property. * * @return * possible object is * {@link String } * */ public String getNumberOfDigits() { return numberOfDigits; } /** * Sets the value of the numberOfDigits property. * * @param value * allowed object is * {@link String } * */ public void setNumberOfDigits(String value) { this.numberOfDigits = value; } }