Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 254 → Rev 255

/trunk/src/org/tela_botanica/client/modeles/Observation.java
20,6 → 20,10
private String date=null;
private String numeroOrdre=null;
private String motsCles=null;
private String coordonneeX=null;
private String coordonneeY=null;
private String referentielGeo=null;
private String systemeCoordonnees=null;
 
 
 
253,6 → 257,22
return motsCles;
}
public String getCoordonneeX() {
return this.coordonneeX ;
}
public String getCoordonneeY() {
return this.coordonneeY ;
}
public String getReferentielGeo() {
return this.referentielGeo ;
}
public String getSystemeCoordonnees() {
return this.systemeCoordonnees ;
}
public void setMotsCles(String motsCles) {
this.motsCles = motsCles;
}
260,6 → 280,22
public void setNumeroOrdre(String numeroOrdre) {
this.numeroOrdre = numeroOrdre;
}
public void setCoordonneeX(String x) {
this.coordonneeX = x;
}
public void setCoordonneeY(String y) {
this.coordonneeY = y;
}
public void setReferentielGeo(String refGeo) {
this.referentielGeo = refGeo;
}
public void setSystemeCoordonnees(String systemeCoordonnees) {
this.systemeCoordonnees = systemeCoordonnees;
}
 
 
}