01: /*
02: * Copyright 2000,2005 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: package org.wings.event;
14:
15: import org.wings.LowLevelEventListener;
16:
17: import java.util.EventObject;
18:
19: /**
20: * A request to an low level event was dropped due to an outdated epoch of this request.
21: *
22: * @author bschmid
23: * @see org.wings.event.SInvalidLowLevelEventListener
24: */
25: public class InvalidLowLevelEvent extends EventObject {
26:
27: /**
28: * Default constructtor
29: *
30: * @param source The LowLevelEventListener which received the outdated request
31: */
32: public InvalidLowLevelEvent(LowLevelEventListener source) {
33: super(source);
34: }
35:
36: }
|