comparison dwt/events/ModifyEvent.d @ 9:ad2b69216039

moved org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:39:49 +0100
parents org/eclipse/swt/events/ModifyEvent.d@088b30eabff3
children 63c023465156
comparison
equal deleted inserted replaced
8:a1f832ca7d17 9:ad2b69216039
1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 module org.eclipse.swt.events.ModifyEvent;
12
13
14 import org.eclipse.swt.widgets.Event;
15 import org.eclipse.swt.events.TypedEvent;
16
17 /**
18 * Instances of this class are sent as a result of
19 * text being modified.
20 *
21 * @see ModifyListener
22 */
23
24 public final class ModifyEvent : TypedEvent {
25
26 //static final long serialVersionUID = 3258129146227011891L;
27
28 /**
29 * Constructs a new instance of this class based on the
30 * information in the given untyped event.
31 *
32 * @param e the untyped event containing the information
33 */
34 public this(Event e) {
35 super(e);
36 }
37
38 }
39