Subversion Repositories eFlore/Applications.coel

Rev

Rev 1617 | Rev 1680 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1617 Rev 1661
Line 330... Line 330...
330
		if (!commentaireCollectee.comparer(commentaire)) {
330
		if (!commentaireCollectee.comparer(commentaire)) {
331
			commentaireARetourner = commentaire = commentaireCollectee;
331
			commentaireARetourner = commentaire = commentaireCollectee;
332
		}
332
		}
333
		return commentaireARetourner;
333
		return commentaireARetourner;
334
	}
334
	}
335
	
-
 
336
	public void reinitialiserFormulaire() {
-
 
337
		if (mode.equals(Formulaire.MODE_MODIFIER)) {
-
 
338
			mediateur.afficherFormPublication(commentaire.getId());
-
 
339
		} else {
-
 
340
			mediateur.afficherFormPublication(null);
-
 
341
		}
-
 
342
	}
-
 
343
}
-
 
344
335
}
-
 
336