mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-28 11:25:35 +02:00
Bug 322129 - "Unknown Hyperlink" if more than hyperlink available
This commit is contained in:
parent
e7c7fe70db
commit
183bbf1878
1 changed files with 3 additions and 19 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2000, 2006 IBM Corporation and others.
|
* Copyright (c) 2000, 2010 IBM Corporation and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -29,7 +29,7 @@ public class CElementHyperlink implements IHyperlink {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new Java element hyperlink.
|
* Creates a new C element hyperlink.
|
||||||
*/
|
*/
|
||||||
public CElementHyperlink(IRegion region, IAction openAction) {
|
public CElementHyperlink(IRegion region, IAction openAction) {
|
||||||
Assert.isNotNull(openAction);
|
Assert.isNotNull(openAction);
|
||||||
|
@ -39,35 +39,19 @@ public class CElementHyperlink implements IHyperlink {
|
||||||
fOpenAction= openAction;
|
fOpenAction= openAction;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @see org.eclipse.jdt.internal.ui.javaeditor.IHyperlink#getHyperlinkRegion()
|
|
||||||
* @since 3.1
|
|
||||||
*/
|
|
||||||
public IRegion getHyperlinkRegion() {
|
public IRegion getHyperlinkRegion() {
|
||||||
return fRegion;
|
return fRegion;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @see org.eclipse.jdt.internal.ui.javaeditor.IHyperlink#open()
|
|
||||||
* @since 3.1
|
|
||||||
*/
|
|
||||||
public void open() {
|
public void open() {
|
||||||
fOpenAction.run();
|
fOpenAction.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @see org.eclipse.jdt.internal.ui.javaeditor.IHyperlink#getTypeLabel()
|
|
||||||
* @since 3.1
|
|
||||||
*/
|
|
||||||
public String getTypeLabel() {
|
public String getTypeLabel() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @see org.eclipse.jdt.internal.ui.javaeditor.IHyperlink#getHyperlinkText()
|
|
||||||
* @since 3.1
|
|
||||||
*/
|
|
||||||
public String getHyperlinkText() {
|
public String getHyperlinkText() {
|
||||||
return null;
|
return fOpenAction.getText();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue