/******************************************************************************* * Copyright (c) 2004, 2005 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.ganoro.phing.ui.editors; import org.eclipse.jface.text.IRegion; import org.eclipse.jface.text.hyperlink.IHyperlink; public class AntElementHyperlink implements IHyperlink { private IRegion fRegion= null; private Object fLinkTarget= null; private PhingEditor fEditor= null; public AntElementHyperlink(PhingEditor editor, IRegion region, Object linkTarget) { fRegion= region; fLinkTarget= linkTarget; fEditor= editor; } /* (non-Javadoc) * @see org.eclipse.jface.text.hyperlink.IHyperlink#getHyperlinkRegion() */ public IRegion getHyperlinkRegion() { return fRegion; } /* (non-Javadoc) * @see org.eclipse.jface.text.hyperlink.IHyperlink#getTypeLabel() */ public String getTypeLabel() { return null; } /* (non-Javadoc) * @see org.eclipse.jface.text.hyperlink.IHyperlink#getHyperlinkText() */ public String getHyperlinkText() { return null; } /* (non-Javadoc) * @see org.eclipse.jface.text.hyperlink.IHyperlink#open() */ public void open() { fEditor.openTarget(fLinkTarget); } }