* il giocatore che deve fare l'ipotesi
*/
public abstract void forumlaIpotesi(String nomeGiocatore);
protected final synchronized void fireIpotesiFormulataEvent(String accusante, CongetturaRidotta ipotesi) {
IpotesiFormulataEvent evento = new IpotesiFormulataEvent(this, accusante, ipotesi);
for (int i = 0; i < listeners.size(); i++)
if (listeners.get(i) instanceof IpotesiFormulataListener)
((IpotesiFormulataListener) listeners.get(i)).notificaIpotesiFormulata(evento);
}