synchronized (getGUI().getSynchro()) {
synchronized (getGUI().sync_tree) {
final Session session = getGUI().getSynchro().getSessionFactory().getCurrentSession();
session.beginTransaction();
try {
session.update(this); // pour le setDescription() => � enlever qd la description ne sera plus persistente
if (match.find()) {
final int value = new Integer(match.group(1)).intValue();
getTarget().addEvent(new EventGenericProcess(true, value));
getGUI().setStatus(getGUI().getConfig().getPattern("process_returned", GenericTools.formatNumericString(getGUI().getConfig(), new Integer(value).toString())));
setDescription("" + GenericTools.formatNumericString(getGUI().getConfig(), new Integer(value).toString()) + " " + querier.getUnit());