KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > help > ui > internal > HyperlinkAdapter


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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  *******************************************************************************/

11 package org.eclipse.help.ui.internal;
12 import org.eclipse.swt.widgets.*;
13 public class HyperlinkAdapter implements IHyperlinkListener {
14     /**
15      * HyperlinkAdapter constructor comment.
16      */

17     public HyperlinkAdapter() {
18         super();
19     }
20     /**
21      * @param linkLabel
22      * org.eclipse.swt.widgets.Label
23      */

24     public void linkActivated(Control linkLabel) {
25     }
26     /**
27      * @param linkLabel
28      * org.eclipse.swt.widgets.Label
29      */

30     public void linkEntered(Control linkLabel) {
31     }
32     /**
33      * @param linkLabel
34      * org.eclipse.swt.widgets.Label
35      */

36     public void linkExited(Control linkLabel) {
37     }
38 }
39
Popular Tags