import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;


public class Frame_Aula43 extends JFrame implements ActionListener
{
		JToolBar barra_de_Ferramentas = new JToolBar ();
		JButton bt_Ajuda, bt_Atendimento, bt_Internet, bt_Backup, bt_Seguranca, bt_Usuarios, bt_Sair;  
		public 	Frame_Aula43()
		{
				setLayout(new BorderLayout());
				getContentPane().add(barra_de_Ferramentas);
				bt_Ajuda.addActionListener(this);
				bt_Atendimento.addActionListener(this);
				bt_Internet.addActionListener(this); 
				bt_Backup.addActionListener(this);
				bt_Seguranca.addActionListener(this);
				bt_Usuarios.addActionListener(this);
				bt_Sair.addActionListener(this);
		}
		public void actionPerformed (ActionEvent e)
		{
				if(e.getSource()==bt_Sair)
				{
					
				}	
		}		
}