CPD Results
The following document contains the results of PMD's CPD 5.2.1.
Duplications
| File | Line |
|---|---|
| pl/matsuo/core/model/numeration/Numeration.java | 45 |
| pl/matsuo/core/model/numeration/NumerationSchema.java | 28 |
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
public String getPattern() {
return pattern;
}
public void setPattern(String pattern) {
this.pattern = pattern;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getMaxValue() {
return maxValue;
}
public void setMaxValue(Integer maxValue) {
this.maxValue = maxValue;
}
public Integer getMinValue() {
return minValue;
}
public void setMinValue(Integer minValue) {
this.minValue = minValue;
}
public Date getStartDate() {
|
|