Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 977 → Rev 978

/trunk/src/org/tela_botanica/del/client/modeles/InterventionForum.java
12,7 → 12,8
private InterventionForum parent;
private Observation observation;
public List<Commentaire> listeCommentaires = new ArrayList<Commentaire>();
 
boolean estAffichee;
public void setId(String id) {
this.id = id;
}
25,6 → 26,14
return idParent;
}
 
public void afficher() {
this.estAffichee = true;
}
public boolean estAffichee() {
return this.estAffichee;
}
public void setIdParent(String idParent) {
this.idParent = idParent;
}