refactored

This commit is contained in:
Francesco Mangiacrapa 2022-10-21 16:33:17 +02:00
parent 5d51e3f740
commit b37a7446c3
1 changed files with 16 additions and 16 deletions

View File

@ -23,10 +23,6 @@ public class ProjectView implements Serializable {
}
public void addSectionView(SectionView sectionView) {
listSections.add(sectionView);
}
public ProjectDV getTheProjectDV() {
return theProjectDV;
}
@ -35,24 +31,28 @@ public class ProjectView implements Serializable {
return listSections;
}
public void setTheProjectDV(ProjectDV theProjectDV) {
this.theProjectDV = theProjectDV;
}
public void setCentroidLat(Double centroidLat) {
this.centroidLat = centroidLat;
}
public void setCentroidLong(Double centroidLong) {
this.centroidLong = centroidLong;
public Double getCentroidLong() {
return centroidLong;
}
public Double getCentroidLat() {
return centroidLat;
}
public Double getCentroidLong() {
return centroidLong;
public void setTheProjectDV(ProjectDV theProjectDV) {
this.theProjectDV = theProjectDV;
}
public void setListSections(List<SectionView> listSections) {
this.listSections = listSections;
}
public void setCentroidLong(Double centroidLong) {
this.centroidLong = centroidLong;
}
public void setCentroidLat(Double centroidLat) {
this.centroidLat = centroidLat;
}
@Override