*
*/
public abstract void chiediAzione(String nomeGiocatore, AzioniEnum[] azione);
protected final synchronized void fireAzioneSceltaEvent(String giocatore, AzioniEnum azione) {
AzioneSceltaEvent evento = new AzioneSceltaEvent(this, giocatore, azione);
for (int i = 0; i < listeners.size(); i++)
if (listeners.get(i) instanceof AzioneSceltaListener)
((AzioneSceltaListener) listeners.get(i)).notificaAzioneScelta(evento);
}