KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > events > DragDetectEvent


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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 package org.eclipse.swt.events;
12
13 import org.eclipse.swt.widgets.Event;
14
15 /**
16  * Instances of this class are sent as a result of
17  * a drag gesture.
18  *
19  * @see DragDetectListener
20  *
21  * @since 3.3
22  */

23
24 public final class DragDetectEvent extends MouseEvent {
25
26     private static final long serialVersionUID = -7229172519733647232L;
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 DragDetectEvent(Event e) {
35     super(e);
36 }
37 }
38
Popular Tags