Package entidades

Examples of entidades.Policia


    String tipooperacion;
   
    public PoliciaController(Policia policia) {
        ec = EntityController.getInstance();
        if (policia == null){
            this.policia = new Policia();
            setModo(false);
        } else {
            this.policia = policia;
            setModo(true);
        }
View Full Code Here


       
    }
      private void limpiarLista(List<Policia> listaR){
        for (int i = 0; i < listaR.size(); i++) {
            Policia preso = listaR.get(i);
            for (int j = 0; j < listaR.size(); j++) {
                Policia preso1 = listaR.get(j);
                    if (i!=j){
                        if (preso.equals(preso1)){
                            listaR.remove(j);
                        }
                    }
View Full Code Here

TOP

Related Classes of entidades.Policia

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.