Package modelos

Examples of modelos.Producto


        botonGuardar.setBounds(70, 65, 200, 20);
        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);
View Full Code Here

TOP

Related Classes of modelos.Producto

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.