Examples of guardarProducto()


Examples of modelos.ProductoDao.guardarProducto()

        botonGuardar.addMouseListener(new MouseAdapter() {
            public void mouseClicked(MouseEvent ev){
                System.out.println("El texto introducido es:"+textNombre.getText());
                ProductoDao prodao = new ProductoDao();
                Producto p = new Producto(textNombre.getText(), calendar2.getDate());
                prodao.guardarProducto(p);
                repaint();
            }
        });
        add(botonGuardar);
        //panel.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
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.