import javax.swing.*;
import java.awt.*;
import javax.swing.event.*;
import java.awt.event.*;

public class cadastro extends JFrame implements ActionListener 
{
	
	JPanel Painel_Norte,Painel_Sul, Painel_Leste, Painel_Oeste, Painel_Centro;
	JPanel Panel_leste1;
	JPanel Painel_Oeste1,  Painel_Oeste2,  Painel_Oeste3, Painel_Oeste4, Painel_Oeste5, Painel_Oeste6, Painel_Oeste7, Painel_Oeste8,  Painel_Oeste9,  Painel_Oeste10; 
    JPanel Painel_Oeste11,  Painel_Oeste12,  Painel_Oeste13, Painel_Oeste14, Painel_Oeste15, Painel_Oeste16, Painel_Oeste17, Painel_Oeste18;
	JButton bt_Enviar;
	JTextField tf_Razao_Social, tf_Cnpj,tf_Inscricao_estadual,tf_telefone1,
	tf_telefone2,tf_email_da_empresa,tf_endereco_da_empresa,tf_Responsavel_da_empresa,
	tf_telefone,tf_Celular,tf_Email;


	public cadastro()
	{

			setLayout(new BorderLayout());
			getContentPane().add("North", Painel_Norte = new JPanel(new FlowLayout(FlowLayout.CENTER)));
			Painel_Norte.add(new JLabel("CADASTRO"));
            			getContentPane().add("West", Painel_Oeste = new JPanel(new GridLayout(18,1)));

   	 
			JPanel Painel_Oeste1A = new JPanel(new FlowLayout(FlowLayout.RIGHT));
			JPanel Painel_Oeste1B = new JPanel(new FlowLayout(FlowLayout.LEFT)); 

			Painel_Oeste.add(Painel_Oeste1 = new JPanel(new GridLayout(1, 2)));	
			Painel_Oeste1.add(Painel_Oeste1A); 
			Painel_Oeste1.add(Painel_Oeste1B); 		
			Painel_Oeste1A.add(new JLabel("Razao Social"));
			Painel_Oeste1B.add(tf_Razao_Social = new JTextField(25));
		
			Painel_Oeste.add(Painel_Oeste2 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste2.add(new JLabel("Cnpj"));
			Painel_Oeste.add(Painel_Oeste3 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste3.add(new JLabel("Inscricao Estadual"));
			Painel_Oeste.add(Painel_Oeste4 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste4.add(new JLabel("Telefone1"));
			Painel_Oeste.add(Painel_Oeste5 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste5.add(new JLabel("Telefone2"));
			Painel_Oeste.add(Painel_Oeste6 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste6.add(new JLabel("E-mail"));
			Painel_Oeste.add(Painel_Oeste7 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste7.add(new JLabel("Endereco da Empresa"));
			Painel_Oeste.add(Painel_Oeste8 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste8.add(new JLabel("Responsavel da empresa"));
			Painel_Oeste.add(Painel_Oeste9 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste9.add(new JLabel("Telefone"));
			Painel_Oeste.add(Painel_Oeste10 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste10.add(new JLabel("Celular"));

			Painel_Oeste.add(Painel_Oeste11 = new JPanel(new FlowLayout(FlowLayout.RIGHT)));
			Painel_Oeste10.add(new JLabel("E-mail"));
			pack();
			setVisible(true);
			//setResizable(false);			
		}
		public  static void main (String args [])
		{
				new cadastro();
		}
		public void actionPerformed(ActionEvent e)
		{
	
		}
}			