Package beancomentarios

Examples of beancomentarios.Comentario


       
            if(xmlValido) {
                String fecha = nComentario.item(1).getTextContent();
                String texto = nComentario.item(3).getTextContent();

                modeloComentarios.addComentario(new Comentario(texto, fecha));
            } else {
                Practica1.log.error("Abrir, error cargar comentarios");
                throw new ExperimentoInvalidoException(
                        Language.getI().getP("FICHERO_INVALIDO"));
            }
View Full Code Here


                if(xmlValido) {
                    String fecha = nComentario.item(1).getTextContent();
                    String texto = nComentario.item(3).getTextContent();

                    modeloComentarios.addComentario(new Comentario(texto, fecha));
                } else {
                    Practica1.log.error("Abrir, error cargar comentarios");
                    throw new ExperimentoInvalidoException(
                            Language.getI().getP("FICHERO_INVALIDO"));
                }
View Full Code Here

                   
                    while(rsCom.next()) {
                        String fech = rsCom.getString("FECHACOMENTARIO");
                        String com = rsCom.getString("COMENTARIO");
                       
                        modelComentarios.addComentario(new Comentario(com, fech));
                    }
                   
                    p.setModeloComentarios(modelComentarios);
                   
                    exp.addPoblacion(p);
View Full Code Here

TOP

Related Classes of beancomentarios.Comentario

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.