[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[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