/**
 * @(#)Text1.java
 *
 *
 * @author 
 * @version 1.00 2017/3/28
 */
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;

public class Paula extends JFrame implements ActionListener
{
	JPanel Painel_leste, Painel_leste2, Painel_leste3;
	JPanel Painel_oeste, Painel_oeste2, Painel_oeste3;
	JButton bt_calcular, bt_limpar, bt_sair;
	JLabel lbl_Resultado;
	JTextArea txt_numero, txt_potencia;
	
	 public Paula() 
    {
    	setLayout(new BorderLayout());
    	getContentPane().add("East", Painel_leste = new JPanel(new GridLayout(4,3)));
    	Painel_leste.add(Painel_leste = new JPanel(new FlowLayout(FlowLayout.LEFT)));
    	Painel_leste.add( new JLabel("................."));
    	
    	
    	this.setLocationRelativeTo(null);		
    	setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    	setResizable(false);		
    	setTitle("Calculadora Exponencial");
    	pack();
    	setVisible(true);
    	
    }
    public static void main (String args [])
    {
    	new CalculadoraSimples2();
    	
    }	
    
    public void actionPerformed (ActionEvent e)
    {
	

   
    		   	
    		
    }
		
    
}