01: /*
02: * Copyright 2000,2006 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13:
14: package org.wings.event;
15:
16: import java.util.EventListener;
17:
18: /**
19: * Empty default implementation of {@link SDocumentListener}.
20: *
21: * @author Christian Schyma
22: * @see SDocumentEvent
23: * @see SDocumentListener
24: */
25: public abstract class SDocumentAdapter implements SDocumentListener {
26: public void insertUpdate(SDocumentEvent e) {
27: };
28:
29: public void removeUpdate(SDocumentEvent e) {
30: };
31:
32: public void changedUpdate(SDocumentEvent e) {
33: };
34: }
|