Merge branch 'dmp-refactoring' of https://code-repo.d4science.org/MaDgiK-CITE/argos into dmp-refactoring

This commit is contained in:
Sofia Papacharalampous 2024-07-03 11:28:40 +03:00
commit fe97a14274
1 changed files with 8 additions and 8 deletions

View File

@ -9,27 +9,27 @@ import jakarta.xml.bind.annotation.XmlElement;
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
public class DescriptionTemplateMultiplicityImportExport { public class DescriptionTemplateMultiplicityImportExport {
@XmlAttribute(name="min") @XmlAttribute(name="min")
private int min; private Integer min;
@XmlAttribute(name="max") @XmlAttribute(name="max")
private int max; private Integer max;
@XmlElement(name="placeholder") @XmlElement(name="placeholder")
private String placeholder; private String placeholder;
@XmlElement(name="tableView") @XmlElement(name="tableView")
private boolean tableView; private boolean tableView;
public int getMin() { public Integer getMin() {
return this.min; return min;
} }
public void setMin(int min) { public void setMin(Integer min) {
this.min = min; this.min = min;
} }
public int getMax() { public Integer getMax() {
return this.max; return max;
} }
public void setMax(int max) { public void setMax(Integer max) {
this.max = max; this.max = max;
} }