Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. public class KlasesNosaukums extends JFrame implements ActionListener
  2. {
  3.    protected JButton poga_1;
  4.    protected JButton poga_2;
  5.    ...
  6.    protected JButton poga_n;
  7.    public void actionPerformed(ActionEvent e)
  8.    {
  9.       if(e.getSource() == poga_1) {
  10.          ...
  11.       } else if (e.getSource() == poga_2) {
  12.          ...
  13.       } else if (e.getSource() == poga_3)
  14.       ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement