Advertisement
Braber01

Java Tattoo

Nov 8th, 2010
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 1.44 KB | None | 0 0
  1. /**
  2.  *Orgasm.java
  3.  */
  4.  
  5. import java.awt.*;
  6. import java.awt.event.*;
  7. import javax.swing.*;
  8.  
  9. /**
  10.  *@author Ben Raber
  11.  *@version 0.0.0.1
  12.  */
  13.  
  14. public class Orgasm extends JFrame{
  15.     private JPanel pnlMain;
  16.     private JPanel pnlExit;
  17.     private JButton btnFemale;
  18.     private JButton btnMale;
  19.     private JButton btnExit;
  20.  
  21.     public Orgasm(){
  22.         this.setSize(250,250);
  23.         this.setTitle("Orgasam Simulator")
  24.         this.setLayout(new BorderLayout());
  25.         this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  26.         pnlMain = new JPanel();
  27.         pnlExit = new JPanel();O
  28.         pnlMain.setLayout(new FlowLayout());
  29.         pnlExit.setLayout(new FlowLayout());
  30.         btnMale = new JButton("Male");
  31.         btnFemale = new JButton("Female");
  32.         btnExit = new JButton("Exit");
  33.         pnlMain.add(btnMale);
  34.         pnlMain.add(btnFemale);
  35.         btnMale.addActionListener(new ActionListener()
  36.         {  
  37.             @Override
  38.             private void actionPreformed(ActionEvent e)
  39.             {
  40.                 JOptionPane.showMessageDialog(null,"OH GOD!");
  41.             }
  42.         });
  43.         btnFemale.addActionListener(new ActionListener()
  44.         {
  45.             @Override
  46.             private void actionPreformed(ActionEvent e)
  47.             {
  48.                 for(int i = 0; i < 30;i++)
  49.                 {
  50.                     JOptionPane.showMessageDialog(null,"OH GOD!");
  51.                 };
  52.             });
  53.         btnExit.addActionListener(new ActionListener()
  54.         {
  55.             @Override
  56.             private void actionPreformed(ActionEvent e)
  57.             {
  58.                 System.exit(0);
  59.             }
  60.         });
  61.         this.setVisible(true);
  62.     }
  63.     public static void Main(String[] args)
  64.     {
  65.         new Orgasm;
  66.     }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement