comparison dwt/events/TreeEvent.d @ 0:5406a8f6526d

Add initial files
author John Reimer <terminal.node@gmail.com
date Sun, 20 Jan 2008 21:50:55 -0800
parents
children fd9c62a2998e
comparison
equal deleted inserted replaced
-1:000000000000 0:5406a8f6526d
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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwt.events.TreeEvent;
14
15
16 import dwt.widgets.Event;
17 import dwt.events.SelectionEvent;
18
19 /**
20 * Instances of this class are sent as a result of
21 * trees being expanded and collapsed.
22 *
23 * @see TreeListener
24 */
25
26 public final class TreeEvent : SelectionEvent {
27
28 //static final long serialVersionUID = 3257282548009677109L;
29
30 /**
31 * Constructs a new instance of this class based on the
32 * information in the given untyped event.
33 *
34 * @param e the untyped event containing the information
35 */
36 public this(Event e) {
37 super(e);
38 }
39
40 }
41