comparison org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkDetectorExtension2.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
comparison
equal deleted inserted replaced
11:43904fec5dca 12:bc29606a740c
1 /*******************************************************************************
2 * Copyright (c) 2007 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module org.eclipse.jface.text.hyperlink.IHyperlinkDetectorExtension2;
14
15 import org.eclipse.jface.text.hyperlink.IHyperlinkPresenterExtension; // packageimport
16 import org.eclipse.jface.text.hyperlink.MultipleHyperlinkPresenter; // packageimport
17 import org.eclipse.jface.text.hyperlink.HyperlinkManager; // packageimport
18 import org.eclipse.jface.text.hyperlink.URLHyperlink; // packageimport
19 import org.eclipse.jface.text.hyperlink.IHyperlinkDetector; // packageimport
20 import org.eclipse.jface.text.hyperlink.IHyperlinkPresenter; // packageimport
21 import org.eclipse.jface.text.hyperlink.URLHyperlinkDetector; // packageimport
22 import org.eclipse.jface.text.hyperlink.DefaultHyperlinkPresenter; // packageimport
23 import org.eclipse.jface.text.hyperlink.AbstractHyperlinkDetector; // packageimport
24 import org.eclipse.jface.text.hyperlink.IHyperlinkDetectorExtension; // packageimport
25 import org.eclipse.jface.text.hyperlink.HyperlinkMessages; // packageimport
26 import org.eclipse.jface.text.hyperlink.IHyperlink; // packageimport
27
28
29 import java.lang.all;
30
31
32 /**
33 * Extends {@link IHyperlinkDetector} with ability
34 * to specify the state mask of the modifier keys that
35 * need to be pressed for this hyperlink detector.
36 * <p>
37 * Clients may implement this interface.
38 * </p>
39 *
40 * @since 3.3
41 */
42 public interface IHyperlinkDetectorExtension2 {
43
44 /**
45 * Returns the state mask of the modifier keys that
46 * need to be pressed for this hyperlink detector.
47 *
48 * @return the state mask
49 */
50 int getStateMask();
51 }