Constructing Related Actions

public static ActionListener createGreetingButtonListener(
   final String message)
{
   return new
      ActionListener()
      {
         public void actionPerformed(ActionEvent event)
         {
            textField.setText(message);
         }
      };
}


previous | start | next .... [Slide 34] ....