Package maissocial.gui

Source Code of maissocial.gui.UfGUI

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package maissocial.gui;

import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
import maissocial.controle.Fachada;
import maissocial.entidade.Uf;

/**
*
* @author luciano
*/
public class UfGUI {

    public static void main(String[] args){

        Uf uf = new Uf("PE", "PERNAMBUCO", 1);
      
        try {
            Fachada.getInstance().getUfControle().salvarUf(uf);
            JOptionPane.showMessageDialog(null, "Uf alterada com sucesso!");
            Uf uf2 = Fachada.getInstance().getUfControle().pesquisarUfPorCodigo(1);
            System.out.print(uf2.getNome());

        } catch (Exception ex) {
            Logger.getLogger(UfGUI.class.getName()).log(Level.SEVERE, null, ex);
        }

    }

}
TOP

Related Classes of maissocial.gui.UfGUI

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.