blob: 3b11a680d272ae0af3fb3fedcf50ee62bc1b1f09 [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.update.ui.forms.internal.engine;
import org.eclipse.jface.action.IStatusLineManager;
/**
* @version 1.0
* @author
*/
public class HyperlinkAction {
IStatusLineManager manager;
private String description;
public HyperlinkAction() {
}
public void linkActivated(final IHyperlinkSegment link) {
}
public void linkEntered(IHyperlinkSegment link) {
if (manager!=null && description!=null) {
manager.setMessage(description);
}
}
public void linkExited(IHyperlinkSegment link) {
if (manager!=null && description!=null) {
manager.setMessage(null);
}
}
public void setStatusLineManager(IStatusLineManager manager) {
this.manager = manager;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}