/******************************************************************************* * Copyright (c) 2000, 2010 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.internal.ui.editor; import org.eclipse.core.runtime.Assert; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.IAction; import org.eclipse.jface.text.IRegion; import org.eclipse.jface.text.hyperlink.IHyperlink; /** * C element hyperlink. * * @since 3.0 */ public class CElementHyperlink implements IHyperlink { private final IRegion fRegion; private final IAction fOpenAction; /** * Creates a new C element hyperlink. */ public CElementHyperlink(IRegion region, IAction openAction) { Assert.isNotNull(openAction); Assert.isNotNull(region); fRegion= region; fOpenAction= openAction; } public IRegion getHyperlinkRegion() { return fRegion; } public void open() { fOpenAction.run(); } public String getTypeLabel() { return null; } public String getHyperlinkText() { return Action.removeMnemonics(fOpenAction.getText()); } }