Examples of obtenerProductos()


Examples of modelos.ProductoDao.obtenerProductos()

    }
    public void llenarTabla(){
        DefaultTableModel dtm= new DefaultTableModel();

        ProductoDao prod = new ProductoDao();
        List<Producto> productos = prod.obtenerProductos();
//        Object[][] cellData = { { "1-1", "1-2" }, { "2-1", "2-2" } };
        Object [] data = new Object[2];
        String[] columnNames = {"Nombre", "Fecha"};
        dtm.addColumn("Nombre");
        dtm.addColumn("Fecha");
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.