blob: b7068b86f43a514bdda6887cf692c20643a2337c [file] [log] [blame]
package org.eclipse.help.internal.ui;
/*
* Licensed Materials - Property of IBM,
* WebSphere Studio Workbench
* (c) Copyright IBM Corp 2000
*/
import org.eclipse.swt.widgets.*;
import org.eclipse.swt.widgets.Label;
/**
*
*/
public interface IHyperlinkListener {
/**
* @param linkLabel org.eclipse.swt.widgets.Label
*/
public void linkActivated(Control linkLabel);
/**
* @param linkLabel org.eclipse.swt.widgets.Label
*/
public void linkEntered(Control linkLabel);
/**
* @param linkLabel org.eclipse.swt.widgets.Label
*/
public void linkExited(Control linkLabel);
}