• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

name of the window pop-up while we hover the mouse on any class name in eclipse.

 
Ranch Hand
Posts: 111
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.?
 
Saloon Keeper
Posts: 28807
212
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Bharath Raja
Ranch Hand
Posts: 111
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

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....?
 
What's a year in metric? Do you know this metric stuff tiny ad?
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic