All pastes #2059528 Raw Edit

Miscellany

public text v1 · immutable
#2059528 ·published 2011-05-14 21:49 UTC
rendered paste body
        row.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent f){
                try{
                    String magic = f.paramString();
                    rowvalue = Integer.parseInt(f.paramString());
                } catch(NumberFormatException e){
                    JOptionPane.showMessageDialog(new JFrame(), "Goofed.", "Consequences will never be the same.", JOptionPane.ERROR_MESSAGE);
                }
            }
        });