final Matcher match =
Pattern.compile(getGUI().getConfig().getProperty("ping.regex")).matcher(cmd_output);
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
// pour ce update, lors d'un mergeEventsSimple() : Illegal attempt to associate a collection with two open sessions
if (match.find() == true) {
final int delay = new Integer(match.group(2)).intValue();