Eclipse 3.3 M7 News
Eclipse 3.3 M7 News
http://download.
Here are some of the cool features:
**Quick access To quickly access UI elements such as views, commands, preference pages, and others, use the new Quick Access dialog, available under Window > Navigation and bound to Ctrl+
Your previous choices will be remembered and shown the next time the dialog opens. If you enter the same filter string again, the entry you picked last time will be selected automatically.
Using the initials of the words you are trying to find, you can narrow down your choices using very few letters. Here are two examples of this:
**Editor area drag and drop
Dragging external files (i.e., from the Windows file explorer) on to the editor area of a workbench window has the same effect as
Open File. Also, you can now drag an editor between workbench windows associated with the same workspace.
**Double-click + mouse move to select words in editors Words can now be selected using double-click + mouse move.
**English spelling dictionaries An American and a British English dictionary are now part of the SDK:
Spell checking is now enabled per default. The feature can be disabled with the new Disable Spell Checking quick assist.
Tip: It's recommended that you set a user dictionary to collect custom words that are not part of the lexicon. This can be configured on the General > Editors > Text Editors > Spelling preference page.
Introduce Parameter Object refactoring
Introduce Parameter Object is a new refactoring that replaces a set of parameters with a new container object. All calls to the method are updated to pass the new parameter object class.
Use cases:
- group parameters which logically belong together; e.g., Date start, Date end, String newValue, String oldValue
- reduce number of parameters
- provide useful defaults in the parameter object
- pass the parameter down the call chain
To execute the Introduce Parameter Object refactoring, select a method, invoke Refactor > Introduce Parameter Object, select parameters that should be used as fields and give meaningful names.
The following code snippet
will be modified to
No comments:
Post a Comment