01: /*******************************************************************************
02: * Copyright (c) 2000, 2004 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.swt.events;
11:
12: import org.eclipse.swt.widgets.Event;
13:
14: /**
15: * Instances of this class are sent as a result of
16: * text being modified.
17: *
18: * @see ModifyListener
19: */
20:
21: public final class ModifyEvent extends TypedEvent {
22:
23: static final long serialVersionUID = 3258129146227011891L;
24:
25: /**
26: * Constructs a new instance of this class based on the
27: * information in the given untyped event.
28: *
29: * @param e the untyped event containing the information
30: */
31: public ModifyEvent(Event e) {
32: super(e);
33: }
34:
35: }
|