| [news.eclipse.platform.rcp] Re: Problem starting Editor - no Tool tip title |
I guess you need to set some string in the getToolTipText() method of EditorInput.
public class TestInput implements IEditorInput
{
public String getToolTipText()
{
return "";
}
}
Barnali