01: /*
02: * de.jwic.events.ObjectSelectedEvent
03: * $Id: SelectionEvent.java,v 1.2 2006/08/14 09:34:59 lordsam Exp $
04: */
05: package de.jwic.events;
06:
07: import de.jwic.base.Control;
08: import de.jwic.base.Event;
09:
10: /**
11: *
12: * @author Florian Lippisch
13: * @version $Revision: 1.2 $
14: */
15: public class SelectionEvent extends Event {
16:
17: private static final long serialVersionUID = 1L;
18:
19: /**
20: * @param sourceControl
21: */
22: public SelectionEvent(Control sourceControl) {
23: super(sourceControl);
24: }
25:
26: }
|