1 package org.minetti.astrodevice.client;
2
3 import org.minetti.astrodevice.client.gui.SwtGui;
4
5 /**
6 * Class responsible of application shutdown.
7 * @author Jean-Philippe MINETTI
8 */
9 public final class Shutdown
10 implements Runnable
11 {
12
13 /**
14 * {@inheritDoc}
15 * @see java.lang.Runnable#run()
16 */
17 public void run ()
18 {
19
20 // TODO Auto-generated method stub
21
22
23 System.out.println ("Bye.");
24 }
25
26 }