Package Modelo

Examples of Modelo.FachadaModelo


  private InterfazCliente cliente;

  public ComunicacionServidor() throws RemoteException
  {
    super();
    this.modelo = new FachadaModelo(this);
    this.iniciarServidor(3000);
  }
View Full Code Here


    }
    else if(c.getTipoInvocacion() == this.VALORES_MAXIMOS)
    {
      System.out.println("Me enviaron los valores del Canvas");
      System.out.println("Valores " + Double.parseDouble(retorno.get(0).toString()) + " " + Double.parseDouble(retorno.get(1).toString()));
      this.fm = new FachadaModelo(this);
      this.fm.valoresMaximosCanvas(Double.parseDouble(retorno.get(0).toString()), Double.parseDouble(retorno.get(1).toString()));     
    }
    else if(c.getTipoInvocacion() == this.LANZAR)
    {
      System.out.println("id: " + retorno.get(0).toString() + " Velocidad: " + retorno.get(1).toString() + " Angulo: " + retorno.get(2).toString());
View Full Code Here

public class Principal
{
  public Principal()
  {
    FachadaControlador fc = new FachadaControlador();
    FachadaModelo fm = new FachadaModelo(new FachadaVista(fc.getEventoVista()));
    fm.ingresarBarra();
    fc.agregarModelo(fm);
  }
View Full Code Here

TOP

Related Classes of Modelo.FachadaModelo

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.