blob: dcfe2470c9b81beeff6d17a9b797dbe7b270adc5 [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.*;
public class HyperlinkAdapter implements IHyperlinkListener {
/**
* HyperlinkAdapter constructor comment.
*/
public HyperlinkAdapter() {
super();
}
/**
* @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) {
}
}