[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

Many thanks

Sorry for such a silly question - it is so obvious when you point it out - I am still going through the steep learning curve for RCP and at times it is easy to overlook the obvious

Cheers

Mike

Barnali wrote:
I guess you need to set some string in the getToolTipText() method of EditorInput.

public class TestInput implements IEditorInput
{
public String getToolTipText()
 {	
    return "";
 }
}

Barnali