Lecture 26
14
All together now
•public class JOIApplet extends Applet   implements ActionListener
•{ ...
•
•public void actionPerformed                     ( ActionEvent e )
•{
•  currentMessage =    currentMessage.equals(MESSAGE1) ? MESSAGE2 : MESSAGE1;   
• this.repaint();
•}