package eu.eudat.commons.types.descriptiontemplate.importexport; import jakarta.xml.bind.annotation.XmlAccessType; import jakarta.xml.bind.annotation.XmlAccessorType; import jakarta.xml.bind.annotation.XmlAttribute; @XmlAccessorType(XmlAccessType.FIELD) public class MultiplicityImportExport { @XmlAttribute(name="min") private int min; @XmlAttribute(name="max") private int max; @XmlAttribute(name="placeholder") private String placeholder; @XmlAttribute(name="tableView") private boolean tableView; public int getMin() { return min; } public void setMin(int min) { this.min = min; } public int getMax() { return max; } public void setMax(int max) { this.max = max; } public String getPlaceholder() { return placeholder; } public void setPlaceholder(String placeholder) { this.placeholder = placeholder; } public boolean getTableView() { return tableView; } public void setTableView(boolean tableView) { this.tableView = tableView; } }