blob: 34a7d726c44602c88dbbe5e06d239912ac333652 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.forms.events;
/**
* This adapter class provides default implementations for the
* methods described by the <code>HyperlinkListener</code> interface.
* <p>
* Classes that wish to deal with <code>HyperlinkEvent</code>s can
* extend this class and override only the methods which they are
* interested in.
* </p>
*
* @see HyperlinkListener
* @see HyperlinkEvent
*/
public class HyperlinkAdapter implements HyperlinkListener {
/**
* Sent when the link is entered. The default behaviour
* is to do nothing.
* @param e the event
*/
public void linkEntered(HyperlinkEvent e) {
}
/**
* Sent when the link is exited. The default behaviour
* is to do nothing.
* @param e the event
*/
public void linkExited(HyperlinkEvent e) {
}
/**
* Sent when the link is activated. The default behaviour
* is to do nothing.
* @param e the event
*/
public void linkActivated(HyperlinkEvent e) {
}
}