| Author |
name of the window pop-up while we hover the mouse on any class name in eclipse.
|
Bharath Raja
Ranch Hand
Joined: Jan 21, 2009
Posts: 111
|
|
|
Can anyone tell me the name of the component pop-up while we hover the mouse on any java class name within the eclipse editor? It has give us the comments and annotations which presented in the top of that class name (if there) or just give the class name within one pop-up window. And while we press F2 that pop-up window getting control. How can we get that pop-up component through code.?
|
Life is either daring something or nothing - Helen Keller
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14568
|
|
|
Eclipse itself is built using the SWT components, so the actual tooltip and popup controls are based on SWT. However, the code that actually sets up specific controls for display and use is part of the editor. In this particular case, it would be the Java editor, which is one of the standard plugins bundled with the Java development Eclipse distros.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
Bharath Raja
Ranch Hand
Joined: Jan 21, 2009
Posts: 111
|
|
Tim Holloway wrote:Eclipse itself is built using the SWT components, so the actual tooltip and popup controls are based on SWT. However, the code that actually sets up specific controls for display and use is part of the editor. In this particular case, it would be the Java editor, which is one of the standard plugins bundled with the Java development Eclipse distros.
Thanks Tim,.. But in my case I've my own editor and I want to show that pop-up window while hovering the mouse on particular position. For your Info. I've my customized 'C' Editor. I want to show the pop-up window with my comments available on top of any functions. Any suggestions....?
|
 |
 |
|
|
subject: name of the window pop-up while we hover the mouse on any class name in eclipse.
|
|
|