1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 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.ui.console; 12 13 /** 14 * A hyperlink in a console. Link behavior is implementation dependent. 15 * <p> 16 * Clients may implement this interface. 17 * </p> 18 * @since 3.1 19 */ 20 public interface IHyperlink { 21 22 /** 23 * Notification that the mouse has entered this link's region. 24 */ 25 public void linkEntered(); 26 27 /** 28 * Notification that the mouse has exited this link's region 29 */ 30 public void linkExited(); 31 32 /** 33 * Notification that this link has been activated. Performs 34 * context specific linking. 35 */ 36 public void linkActivated(); 37 } 38