01: /*
02: * This program is free software; you can redistribute it and/or
03: * modify it under the terms of the GNU General Public License
04: * as published by the Free Software Foundation; either version 2
05: * of the License, or any later version.
06: *
07: * This program is distributed in the hope that it will be useful,
08: * but WITHOUT ANY WARRANTY; without even the implied warranty of
09: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10: * GNU General Public License for more detaProjectTreeSelectionListenerils.
11: *
12: * You should have received a copy of the GNU General Public License
13: * along with this program; if not, write to the Free Software
14: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15: */
16: package org.acm.seguin.ide.jedit.event;
17:
18: /**
19: * Default implementation of the JRefactoryListener. The methods do nothing
20: * when invoked.
21: *
22: *@author <a href="mailto:JRefactoryPlugin@ladyshot.demon.co.uk">Mike
23: * Atkinson</a>
24: *@created 23 July 2003
25: *@version $Id: JRefactoryAdapter.java,v 1.1 2003/09/17 19:52:50 mikeatkinson Exp $
26: *@since 0.0.1
27: */
28: public class JRefactoryAdapter implements JRefactoryListener {
29:
30: /**
31: * Notifies the changing of the active project.
32: *
33: *@param evt Description of the Parameter
34: */
35: public void projectLoaded(JRefactoryEvent evt) {
36: }
37:
38: /**
39: * Notifies the creation of a project.
40: *
41: *@param evt Description of the Parameter
42: */
43: public void projectAdded(JRefactoryEvent evt) {
44: }
45:
46: /**
47: * Notifies the removal of a project.
48: *
49: *@param evt Description of the Parameter
50: */
51: public void projectRemoved(JRefactoryEvent evt) {
52: }
53:
54: }
|