Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 11d329b52ecd675ddad04c5b78530bb0e39cbe5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

/**
 * Description: StyledText NPE on selection drag.
 * Steps to reproduce: Double click in the text but do not release the mouse button after second click. Drag around
 *     the text such that scrolling of the text widget does happen.
 * Expected results: No exceptions should be raised.
 * Actual results: Application dies because of NPE.
 */
public class Bug500475_StyledText_NPE_on_selection_drag {

	public static void main(String[] args) {
		Display display = new Display();
		final Shell shell = new Shell(display);
		shell.setSize(200, 200);
		shell.setLayout(new FillLayout());

		StyledText text = new StyledText(shell, SWT.BORDER);
		text.setDoubleClickEnabled(false); // exception does happen only if this flag is 'false'
		text.setText("This is some dummy text. We need enough text to have the scroll bars appear.");

		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch())
				display.sleep();
		}
		display.dispose();
	}
}

Back to the top