01: // StructureChangedAdapter.java
02: // $Id: StructureChangedAdapter.java,v 1.2 2000/08/16 21:37:53 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1998.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.resources.event;
07:
08: /**
09: * @version $Revision: 1.2 $
10: * @author Benoît Mahé (bmahe@w3.org)
11: */
12: public class StructureChangedAdapter implements
13: StructureChangedListener {
14:
15: /**
16: * This handles the <code>RESOURCE_MODIFIED</code> kind of events.
17: * @param evt The StructureChangeEvent.
18: */
19:
20: public void resourceModified(StructureChangedEvent evt) {
21: }
22:
23: /**
24: * A new resource has been created in some space.
25: * This handles the <code>RESOURCE_CREATED</code> kind of events.
26: * @param evt The event describing the change.
27: */
28:
29: public void resourceCreated(StructureChangedEvent evt) {
30: }
31:
32: /**
33: * A resource is about to be removed
34: * This handles the <code>RESOURCE_REMOVED</code> kind of events.
35: * @param evt The event describing the change.
36: */
37:
38: public void resourceRemoved(StructureChangedEvent evt) {
39: }
40:
41: /**
42: * A resource is about to be unloaded
43: * This handles the <code>RESOURCE_UNLOADED</code> kind of events.
44: * @param evt The event describing the change.
45: */
46:
47: public void resourceUnloaded(StructureChangedEvent evt) {
48: }
49:
50: }
|