]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/events/DragDetectEvent.java
Remove invalid SHA-256-Digests
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / events / DragDetectEvent.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.events;
15
16 import org.eclipse.swt.widgets.Event;
17
18 /**
19  * Instances of this class are sent as a result of
20  * a drag gesture.
21  *
22  * @see DragDetectListener
23  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
24  *
25  * @since 3.3
26  */
27
28 public final class DragDetectEvent extends MouseEvent {
29
30         private static final long serialVersionUID = -7229172519733647232L;
31
32 /**
33  * Constructs a new instance of this class based on the
34  * information in the given untyped event.
35  *
36  * @param e the untyped event containing the information
37  */
38 public DragDetectEvent(Event e) {
39         super(e);
40 }
41 }