Java

Eclipse 3.0 M6 - new features

Just a few days ago, but still worth a post: Eclipse 3.0 M6 is released…

Interesting points:

  • Preview of new look for workbench : they've been experimenting with the overall look of views, editors, and perspectives in the workbench. Here's a preview :
  • CVS SSH2 support – SSH2 offers much better security and overall performance than SSH1. The SSH2 integration supports the following features: Improved performance by re-using server connections, Password, public-key, and keyboard-interactive authentication, HTTP and SOCKS5 proxies can get SSH2 access through firewalls, Supports DSA and RSA key generation.
  • Search for local variables : All Java search menu actions (references, etc.) applicable to fields now allow searching for local variables as well
  • Extract Method from initializers : the extract method refactoring can now extract new Java methods from code in initializers :
  • New Create Constant quick fix : whenever a variable name cannot be resolved, there is now a quick fix that offers to create a constant with that name.
  • New quick assist for introducing blocks : quick assist lets you quickly convert a single statement of an 'if' statement into a block. Set the cursor to the 'if' and press Ctrl+1.
  • Incremental content assist : in the Java editor, you can now use shell-style incremental completion. Bound to Shift+Space by default, incremental content assist inserts the common prefix of all possible completions at the caret location. If the available completions do not have a common prefix, the proposal popup is displayed.

full descriptions at the eclipse homepage

Average rating
(0 votes)

Similar entries