001    /////////////////////////////////////////////////
002    //This file is part of EawtWrapper project
003    /////////////////////////////////////////////////
004    //This program is free software; 
005    //you can redistribute it and/or modify it 
006    //under the terms of the GNU General Public License 
007    //as published by the Free Software Foundation; 
008    //either version 2 of the License, 
009    //or (at your option) any later version.
010    /////////////////////////////////////////////////
011    //Copyright (C) 2007 Floriaen
012    //Mail: floriaen@gmail.com
013    /////////////////////////////////////////////////
014    
015    package sears.tools.eawt;
016    
017    /**
018     * Adapter for <tt>ApplicationListener</tt> interface
019     * @see ApplicationListener
020     */
021    public class ApplicationAdapter implements ApplicationListener {
022    
023            public void handleAbout(Object event) {}
024    
025            public void handleOpenApplication(Object event) {}
026    
027            public void handleOpenFile(Object event) {}
028    
029            public void handlePreferences(Object event) {}
030    
031            public void handlePrintFile(Object event) {}
032    
033            public void handleQuit(Object event) {}
034    
035            public void handleReOpenApplication(Object event) {}
036    
037    }