Skip to main content
summaryrefslogtreecommitdiffstats
blob: c77c7dc720b997ba765ef187fa713c9cd6e020b9 (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
package org.eclipse.jface.text;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */


/**
 * A text double click strategy defines the reaction of a text viewer
 * to mouse double click events. For that the strategy must be installed
 * on the text viewer.<p>
 * Clients may implements this interface or use the standard implementation
 * <code>DefaultTextDoubleClickStrategy</code>.
 *
 * @see ITextViewer
 * @see org.eclipse.swt.events.MouseListener#mouseDoubleClick(MouseEvent)
 */
public interface ITextDoubleClickStrategy {

	/**
	 * The mouse has been double clicked on the given text viewer.
	 *
	 * @param viewer the viewer into which has been double clicked
	 */
	void doubleClicked(ITextViewer viewer);
}

Back to the top