Examples of Perfil


Examples of modelo.ladron.perfil.Perfil

    // Creo ObjetoRobado
    ObjetoRobado objeto = new ObjetoRobado(Valor.COMUN);

    // Creo Ladron
    Perfil perfil = new Perfil("Carmen SanDiego", Sexo.FEMENINO, Cabello.ROJO, Senia.ANILLO, Vehiculo.LIMUSINA,
        Hobby.ALPINISMO);
    this.ladron = new Ladron(perfil);
    ladron.planearNuevoDestino(ciudad0);
    ladron.planearNuevoDestino(ciudad1);
    ladron.planearNuevoDestino(ciudad2);
View Full Code Here

Examples of modelo.ladron.perfil.Perfil

    // Creo ObjetoRobado
    ObjetoRobado objeto = new ObjetoRobado(Valor.COMUN);

    // Creo Ladron
    Perfil perfil = new Perfil("Carmen SanDiego", Sexo.FEMENINO, Cabello.ROJO, Senia.ANILLO, Vehiculo.LIMUSINA,
        Hobby.ALPINISMO);
    Ladron ladron = new Ladron(perfil);
    ladron.planearNuevoDestino(ciudad0);
    ladron.planearNuevoDestino(ciudad1);
    ladron.planearNuevoDestino(ciudad2);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.