Eclipse 3.0 Release M1 (First Milestone) version

zhaozj2021-02-08  292

The news just seen in Eclipse.org immediately reposted. I believe that the reader is also a person who knows the goods, does not need to say more, see these pictures, you can look forward to E3. In particular, pay attention to see the first picture "Method Call Hierarchy", which is more convenient to track the code. Go to download one to try ...

--------------------

Eclipse 3.0 M1 - New and Noteworthy

This is first milestone build of the Eclipse 3.0 development cycle, and new and interesting things are already starting to show up. Here are some of the more noteworthy things available in milestone build M1 (June 6, 2003). See the M1 build notes for Details about bugs fixed and other changes.

Method Call hierarchy you can open a View That Shows A Method Call Hierarchy by Pressing Navigate> Open Call Hierarchy (Ctrl Alt H) in The Java Editor or any of the Java Views That Show Methods.

Source tool tips shown with syntax coloringSource tool tips in the Java editor are now shown with the source colored in the usual way. (Source tool tips are turned on by selecting Source on the Java> Editor> Hovers preference page.)

MEMBERS View Follows Caretthe Members View Now Also Follows The Caret Position IF "Link with Editor" is enabled in the view menu (default).

Synchronize Java Editor's Range Indication IS SYNCHRONIZED WITH The Caret Position IF The Editor Preference IS Enabled (Default).

New Quick Fixes for Methods InvocationSeveral New Java Quick Fixes for Mismatch Parameters Have Been Added, Including Offers To Swap, Add, Or Remove Arguments or Method Parameters.

Quick type hierarchy viewSelect a type, method, or package reference in the Java editor and press Ctrl T to see a quick type hierarchy view. For methods, you see all subtypes and supertypes that provide this method.

JUnit usability improvementsThe currently running JUnit test is emphasized in the hierarchy view, and you can now step through test failures using the standard next / previous actions. The new test case wizard can now automatically add the JUnit library to the Java project's build path.More control over generated codeThe code generation dialogs for the Source> Add Getters and Setters, Override / Implement Methods, and Generate Delegate Methods commands now offer more control over the generated methods. You can specify where the generated method will be inserted and, for getter / Setters, The Sort ORDER.

Improved Add Constructors from Superclass dialogThe dialog for the Java editor's Source> Add Constructors from Superclass command now pops up a dialog so that you can choose which of the superclass's constructors should be inserted into the current class. The quick assist feature can still be used to INSERT WITHOUT PROMPTING.

Templates for getters and settersNew Templates for generated getters and setters can be found on the java> code generation> code and comments preference page.

New Style CHECKS for Java Code The Java Compiler Now Offers Additional Style Checks That Find and Flag Common Coding Mistakes (Java> Compiler> Style Preference):

Usage of incompatible libraries The Java compiler can now detect situations where a project is being compiled against a binary library whose version is incompatible with what is being generated; for example, attempting to generate 1.1 compatible class files while compiling against a 1.4 library (Java> Compiler> Build Path Preference).

Variable filtersThe Java debugger now allows certain Java types, including collections and maps, to be displayed in a more compact and meaningful form. These variable filters are controlled by a toggle button in the Variables view.Switching perspective on launchYou can now control which perspective gets Opened WHEN a Program Is Launched. Thase Setting Are Available On The Launch Dialog When a launch configuration type is selected.

...

Environment Variables for External Program Launch Configuration for External Program Has A New Environment Tab for Specifying Environment Variables Setting To Usehen The Program Is Launched.

Working Sets for External Tool Builderswhen Ant Is Being Used As a Builder, IT CAN Now BE Files in a specified working set.

New editor functions All text editors based on the Eclipse editor framework support new editing functions, including moving lines up or down (Alt Arrow Up and Alt Arrow Down), inserting new a line above or below the current line (Ctrl Shift Enter and Shift Enter), and converting to lowercase or uppercase (Ctrl Shift Y and Ctrl Shift X). Double clicking on the line number in the status line is the same as Navigate> Go to Line (Ctrl L ).

Java editor typing modesThe Java editor now has three typing modes:. Overwrite, Insert, and Smart Insert Overwrite and Insert modes are generic, whereas in Smart Insert mode the editor provides Java-specific extras which can be configured on the Java> Editor> Typing preference page. The different typing mode have distinctive carets (not yet supported on all OSs). Pressing the Insert key (or double clicking on the typing mode in the status line) cycles through the available modes.Smart Insert typing mode in Java editor The automatic insertion of closing braces in the Java editor has been improved Rather than occurring as soon as the opening brace is inserted, it now happens when a new line is entered after opening brace Also, there are two new experimental typing actions:.. Smart Semicolon And Smart Opening Brace. Disabled by default SEMICOLON OR Closing Brace, Respectively.

Workspace version check As you open a workspace created with an older version of Eclipse (eg, 2.0), you are told that your workspace is being upgraded and warned that this will likely preclude opening it with the old Eclipse at a later time. (Note That this check will also be in the Upcoming Eclipse 2.1.1 maintenance release.)

Concurrent operations API There are early access versions of new core runtime API (in the org.eclipse.core.runtime.jobs package) for supporting concurrent activities. Additional documents on the responsive UI effort are here.

Eclipse launcher for Mac OS Xthe Eclipse Launcher Has Been Ported to Mac OS X.

All Eclipse launcher arguments can be specified via the "Eclipse" section in Eclipse's Info.plist file. Please note that the standard "Java" section in Info.plist is ignored since we are no longer using the JavaApplicationStub. So if you want to run Eclipse on the 1.4.1 VM you will have to specify the path to the 1.4.1 binary with the "-vm" argument and not with the "jvmversion" tag .hen specifying the workspace location via the "-data" argument, you can use tilde expansion as known from / bin / sh. So "-data ~ / Documents / workspace" will put the workspace in your Documents folder.Other Mac OS X improvementsDrag and dropping views and editors now works on the Mac, and UI performance IS Significant Better Thanks to Various Swt Improvements. (Note That Most of these Mac Improvements Will Also Be in the Upcoming Eclipse 2.1.1 Maintenance Release.)

SWT support for right to left languagesSWT now provides for the mirroring of controls as required by right-to-left languages ​​like Hebrew. The affected SWT API includes Display.map (), SWT.LEFT_TO_RIGHT, SWT.RIGHT_TO_LEFT, SWT.LEAD, SWT .TRAIL, A New GC Constructor, And gc.getStyle (). This Is Implement On Windows At this Point (But not on Other Window Systems).

SWT supports multiple monitorsMultiple monitors are now supported by SWT. See the new Monitor class, Display.getMonitors (), and Display.getPrimaryMonitor (). SWT clients should use the new multi-monitor API when positioning and sizing dialogs, menus, etc.

SWT supports color cursorsSWT now support color cursors on Windows (on other window systems, the bit depth is reduced internally if necessary) These code snippets show usage:. Create a color cursor from a source and a mask; create a color cursor from an image file.Improved SWT clipboardSWT support for the clipboard has been improved by the addition of way to query whether a data type is available on the clipboard. SWT clients should use this API when deciding to enable or disable a paste menu or button (clients currently use . Clipboard.getContent () which is slow and can have negative side effects such as deleting data from the clipboard in a cut operation) This code snippet shows correct usage: enable / disable menu depending on clipboard content availability

Improved plug-in import wizardSeveral improvements have been made to PDE's Plug-in Import wizard so that it works better when there are hundreds of plug-ins. It is easier to make selections from large lists of plug-ins, and compute all the plug -ins Required to Compile The Plug-ins in The Workspace

NEWDATE MANAGER UITHERE IS A New (and Still Somewhat Experimental) UI for the Eclipse Update Manager. You can read about the rate behind The redesign.

转载请注明原文地址:https://www.9cbs.com/read-681.html

New Post(0)