01: package org.wings.event;
02:
03: /**
04: * An abstract adapter class for receiving mouse events. The methods in this class are empty. This class exists as
05: * convenience for creating listener objects.
06: *
07: * If you derive from SMouseAdapter, your class stays compilable, if we decide
08: * to add new methods to the SMouseListener interface.
09: *
10: * @author hengels
11: */
12: public abstract class SMouseAdapter implements SMouseListener {
13: public void mouseClicked(SMouseEvent e) {
14: }
15: }
|