Subversion Repositories eFlore/Applications.cel

Compare Revisions

No changes between revisions

Ignore whitespace Rev 64 → Rev 65

/trunk/src/org/tela_botanica/client/modeles/EntiteGeographiqueObservation.java
New file
0,0 → 1,48
package org.tela_botanica.client.modeles;
 
/**
*
* Classe representant une entite geographique (localite, commune, lieu dit) presente dans la liste des observations
*
*/
 
public class EntiteGeographiqueObservation {
 
 
private String entite=null;
private String parent=null;
public EntiteGeographiqueObservation() {
}
 
/**
* @param commune
* @param departement
*/
public EntiteGeographiqueObservation(String entite, String parent) {
this.entite = entite;
this.parent = parent;
 
}
 
 
 
public String getEntite() {
return entite;
}
 
 
public String getParent() {
return parent;
}
 
 
 
}
Property changes:
Added: svn:executable
+*
\ No newline at end of property