blob: 69a6d77a158bc18524bc5be3dce0c714f8578043 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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.pde.internal.ui.editor.text;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.hyperlink.IHyperlink;
public abstract class AbstractHyperlink implements IHyperlink {
protected String fElement;
private IRegion fRegion;
public AbstractHyperlink(IRegion region, String element) {
fRegion = region;
fElement = element;
}
public IRegion getHyperlinkRegion() {
return fRegion;
}
public String getHyperlinkText() {
return null;
}
public String getTypeLabel() {
return null;
}
}