Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.console/src/org/eclipse/ui/console/IHyperlink.java')
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/console/IHyperlink.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/IHyperlink.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/IHyperlink.java
index 38aa4994c..70c49b5cf 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/IHyperlink.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/IHyperlink.java
@@ -4,7 +4,7 @@
* 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
*******************************************************************************/
@@ -18,17 +18,17 @@ package org.eclipse.ui.console;
* @since 3.1
*/
public interface IHyperlink {
-
+
/**
* Notification that the mouse has entered this link's region.
*/
public void linkEntered();
-
+
/**
* Notification that the mouse has exited this link's region
*/
public void linkExited();
-
+
/**
* Notification that this link has been activated. Performs
* context specific linking.

Back to the top