01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.console;
11:
12: /**
13: * A hyperlink in a console. Link behavior is implementation dependent.
14: * <p>
15: * Clients may implement this interface.
16: * </p>
17: * @since 3.1
18: */
19: public interface IHyperlink {
20:
21: /**
22: * Notification that the mouse has entered this link's region.
23: */
24: public void linkEntered();
25:
26: /**
27: * Notification that the mouse has exited this link's region
28: */
29: public void linkExited();
30:
31: /**
32: * Notification that this link has been activated. Performs
33: * context specific linking.
34: */
35: public void linkActivated();
36: }
|