Skip to main content
summaryrefslogtreecommitdiffstats
blob: a08fb27109a0f600c4aec266e3a81e9635a97c39 (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
35
36
/*******************************************************************************
 * Copyright (c) 2010 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.text.hyperlink;


/**
 * Extends {@link IHyperlinkPresenter} with ability to distinguish between the modes in which the
 * control either takes focus or not when visible.
 * <p>
 * Clients may implement this interface.
 * </p>
 * 
 * @since 3.7
 */
public interface IHyperlinkPresenterExtension2 {

	/**
	 * Tells this hyperlink presenter to show the given hyperlinks on the installed text viewer and
	 * specifies whether or not the control takes focus when visible.
	 * 
	 * @param activeHyperlinks the hyperlinks to show
	 * @param takesFocusWhenVisible <code>true</code> if the control takes the focus when visible,
	 *            <code>false</code> otherwise. Will be ignored if there is only one hyperlink to
	 *            show.
	 */
	public void showHyperlinks(IHyperlink[] activeHyperlinks, boolean takesFocusWhenVisible);

}

Back to the top