Merge branch 'dmp-refactoring' of https://code-repo.d4science.org/MaDgiK-CITE/argos into dmp-refactoring
This commit is contained in:
commit
fe97a14274
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue