Package Tipos

Examples of Tipos.MiColeccion


            // cogere todos los botones
           
            System.out.println("Formada por:"+ listaBotones.size() + " botones");
            if (listaBotones.size()>0){
               
                MiColeccion mc = new MiColeccion();
                mc.clear();
               
                Iterator bot = listaBotones.iterator();
                int j=0;
                while (bot.hasNext()){
                    Element b= (Element)bot.next();
                    Element nombre =b.getChild("nombre");
//                    System.out.println("nombre elemento: "+ nombre.getText());
                   
                    // obtengo el elemento de ese boton
                    Elemento el= CopiaTablero.elementos.Item(nombre.getText());
                    mc.Add(new MiBoton(el.nombre, j, el.nombreImagen));
                    System.out.println("A�ado boton: " + j + ", : " + el.nombre);
                    j++;   
                }
//                // almaceno los botones
                CopiaTablero.coleccion = new MiColeccion();
                CopiaTablero.coleccion.clear();
                CopiaTablero.coleccion= mc;
                System.out.println("Tama�o coleccion final: " + CopiaTablero.coleccion.size());
                // Muestro todos los botones
//                for (int i=0; i< CopiaTablero.coleccion.size(); i++){
View Full Code Here

TOP

Related Classes of Tipos.MiColeccion

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.