Package Comunicacion

Examples of Comunicacion.ComunicacionCliente


  public void addObservers(PrincipalCliente a)
  {
    this.addObserver(a);
    this.vista = new FachadaVista(this);
    try {
      this.comunicacion = new ComunicacionCliente(this.vista);
    } catch (RemoteException e)
    {
      e.printStackTrace();
    }
    this.comunicacion.valoresMaximosCanvas(this.vista.getXMaxCanvas(), this.vista.getYMaxCanvas());
View Full Code Here

TOP

Related Classes of Comunicacion.ComunicacionCliente

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.