Package ingsw.proj.cluedo.eventi

Examples of ingsw.proj.cluedo.eventi.IpotesiFormulataEvent


   *            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);
  }
View Full Code Here

TOP

Related Classes of ingsw.proj.cluedo.eventi.IpotesiFormulataEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.