Less known but useful features in Eclipse

前端 未结 2 626
野趣味
野趣味 2020-12-03 06:25

I have been using Eclipse for a long time, the feature that is less known but very useful is the Scrapbook Page, that allows you to execute sections of the Java code without

相关标签:
2条回答
  • 2020-12-03 06:54

    The plugin Spy (Alt+Shift+F1) is certainly one not very advertised.
    Yet if you have any question about "how I develop a feature X looking like the one in eclipse", it can be very useful to quickly locate the right eclipse java source which does implement that feature!


    (source: willianmitsuda.com)

    See also this Guide to eclipse3.5:

    The Plugin Spy gives you easily information about the running UI.
    Press Alt+Shift+F1 to get information about the current running Eclipse plugin / data types / screen.
    This way you can get immediately access to the plugin which is currently running.


    (source: vogella.de)

    Eclipse 3.5 introduced the possibility to check which plugin contributed a menu. Press "Alt+Shift+F2" and select a menu to see who is contributing this menu


    (source: vogella.de)

    0 讨论(0)
  • 2020-12-03 06:59

    I like the fact, that you don't necessarily need to create a new class by using New->Class, when having the class source somewhere in the clipboard. You can simply select the destination package and paste the clipboard content.

    0 讨论(0)
提交回复
热议问题