Package Sercultur.classes

Examples of Sercultur.classes.Distrito


            Element e = (Element)rows.item(i);
            Element numeros = (Element) e.getElementsByTagName("Numero").item(0);
            Element distritos = (Element) e.getElementsByTagName("Distrito").item(0);
           
            list.add(
                    new Distrito( Integer.parseInt(numeros.getTextContent()),
                    distritos.getTextContent())
                );
           
        }
       
View Full Code Here

TOP

Related Classes of Sercultur.classes.Distrito

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.