Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6cf7c6054c378754d78b69a41235ab73f7f3a9c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.swt.dnd;

import org.eclipse.swt.widgets.*;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */

class NoDragUnderEffect extends DragUnderEffect {

NoDragUnderEffect(Control control) {}
void show(int effect, int x, int y){}
}

Back to the top