/* Copyright 2009 Ramnivas Laddad Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ //Listing 13.16: Main.java with slow methods annotated package ajia.main; //import ...; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import ajia.characteristics.Slow; public class Main { // ... public static void main(String[] args) { JFrame appFrame = new JFrame(); appFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JButton sendEmailButton = new JButton("Send Emails"); sendEmailButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { sendEmails(); } }); appFrame.getContentPane().add(sendEmailButton); appFrame.pack(); appFrame.setVisible(true); } @Slow private static void sendEmails() { // ... try { // simulate long execution... System.out.println("Executing in thread:\n\t" + Thread.currentThread()); Thread.sleep(20000); System.out.println("Completed execution in thread:\n\t" + Thread.currentThread()); } catch (InterruptedException ex) { } } }