Eclipse 3.1 RC1 has been released for download. This is primarily a release candidate build; there are no "new and noteworthy" notes compared to the M7 release. Most changes are bug fixes.
The final build of Eclipse 3.1 is expected in late June 2005.
-
Eclipse 3.1 RC1 released (16 messages)
- Posted by: Joseph Ottinger
- Posted on: June 02 2005 08:00 EDT
Threaded Messages (16)
- Debug problems by Valos Vasile on June 02 2005 11:32 EDT
- Debug problems by David Li on June 02 2005 12:41 EDT
-
Debug problems by Johannes Hiemer on June 02 2005 12:52 EDT
-
Java 1.5 by Ian Purton on June 02 2005 03:16 EDT
-
Static Imports by Mike Stover on June 02 2005 03:39 EDT
-
Static Imports Explained by Dieresis Dieresis on June 02 2005 04:56 EDT
- Clarification by Dieresis Dieresis on June 02 2005 06:08 EDT
-
Static Imports Explained by Dieresis Dieresis on June 02 2005 04:56 EDT
-
Static Imports by Mike Stover on June 02 2005 03:39 EDT
-
Java 1.5 by Ian Purton on June 02 2005 03:16 EDT
-
Debug problems by Johannes Hiemer on June 02 2005 12:52 EDT
- Debug problems by David Li on June 02 2005 12:41 EDT
- Eclipse 3.1 RC1 released by Joe M. on June 03 2005 02:12 EDT
- minor enhancements by Christian Sell on June 03 2005 04:28 EDT
- Eclipse 3.1 RC1 released by Jan Gnezda on June 03 2005 08:10 EDT
- Major new features? by Rod Johnson on June 04 2005 12:19 EDT
- Major new features? by John Ferguson Smart on June 09 2005 03:24 EDT
- SWT GUI Designer by Thierry Janaudy on June 03 2005 04:25 EDT
- Eclipse 3.1 RC1 released by Mark N on June 03 2005 08:31 EDT
- Eclipse 3.1 RC1 released by Dave Bolt on June 03 2005 09:08 EDT
- Together EC broken by Romen Law on June 04 2005 09:33 EDT
-
Debug problems[ Go to top ]
- Posted by: Valos Vasile
- Posted on: June 02 2005 11:32 EDT
- in response to Joseph Ottinger
I have just downloaded it and gave it a try...
This version seems to be much faster than 3.0.2.
One problem though: I can't debug any Tomcat web application - it stops at breakpoint but you can't step into the code nor resume the application (those buttons are disabled).
Sometimes you can't debug even a regular java app (this behaviour is not consistent). -
Debug problems[ Go to top ]
- Posted by: David Li
- Posted on: June 02 2005 12:41 EDT
- in response to Valos Vasile
java 1.5 support? -
Debug problems[ Go to top ]
- Posted by: Johannes Hiemer
- Posted on: June 02 2005 12:52 EDT
- in response to David Li
Of course 1.5 support. :) -
Java 1.5[ Go to top ]
- Posted by: Ian Purton
- Posted on: June 02 2005 15:16 EDT
- in response to Johannes Hiemer
1.5 support has been in the 3.1 releases for quite a while.
generics, static imports etc seem to work well for me.
Todo Lists -
Static Imports[ Go to top ]
- Posted by: Mike Stover
- Posted on: June 02 2005 15:39 EDT
- in response to Ian Purton
I've not had any luck with static imports in Eclipse. But maybe I just don't understand them. -
Static Imports Explained[ Go to top ]
- Posted by: Dieresis Dieresis
- Posted on: June 02 2005 16:56 EDT
- in response to Mike Stover
I've not had any luck with static imports in Eclipse. But maybe I just don't understand them.
Static imports allow you to use the static members of other classes without qualifying them by class name.
Before Java 5, you would have to do something like
import java.lang.Boolean;
class MyClass
{
private Boolean _switch = Boolean.TRUE;
}
Starting with Java 5, you can do
import static java.lang.Boolean.TRUE;
class MyClass
{
private Boolean _switch = TRUE;
}
http://java.sun.com/j2se/1.5.0/docs/guide/language/static-import.html -
Clarification[ Go to top ]
- Posted by: Dieresis Dieresis
- Posted on: June 02 2005 18:08 EDT
- in response to Dieresis Dieresis
Before Java 5, you would have to do something like
import java.lang.Boolean;
Of course, in the case of java.lang.*, the package is auto-imported. I made the import explicit just for this example. One of the static members of java.util.Collections might have been a better example. -
Eclipse 3.1 RC1 released[ Go to top ]
- Posted by: Joe M.
- Posted on: June 03 2005 02:12 EDT
- in response to Joseph Ottinger
When I look at the list of new features I see:
-JDK 5 support (only 9 months late)
-Improved performance (good)
-other minor cosmetic enhancements (always good)
but what I am missing is MAJOR new features. -
minor enhancements[ Go to top ]
- Posted by: Christian Sell
- Posted on: June 03 2005 04:28 EDT
- in response to Joe M.
-other minor cosmetic enhancements (always good)but what I am missing is MAJOR new features.
my impression is that a few of the "minor enhancements" are even rather debatable. For example, the new CVS commit view that shows you the exact same information as the synchronize view - with the effect that users of the synchronize view are presented with the same info twice.
It seems to me that some of these things reflect someones personal preference, rather than a consistent evolvemenet of the eclipse philosophy
christian -
Eclipse 3.1 RC1 released[ Go to top ]
- Posted by: Jan Gnezda
- Posted on: June 03 2005 08:10 EDT
- in response to Joe M.
Note that this is 3.1 release and not 4.0. Usually first number means major improvements and new features and second number minor improvements. -
Major new features?[ Go to top ]
- Posted by: Rod Johnson
- Posted on: June 04 2005 12:19 EDT
- in response to Joe M.
but what I am missing is MAJOR new features.
Java 5.0 support is major IMO. Numerous new language features that need support from an IDE.
No debate that IntelliJ has had good Java 5.0 support for a while, however. -
Major new features?[ Go to top ]
- Posted by: John Ferguson Smart
- Posted on: June 09 2005 15:24 EDT
- in response to Rod Johnson
Agreed, Eclipse support for JDK1.5 is what I've been waiting for to actually use all the new and interesting stuff in Java 5.0. -
SWT GUI Designer[ Go to top ]
- Posted by: Thierry Janaudy
- Posted on: June 03 2005 04:25 EDT
- in response to Joseph Ottinger
Hello,
Is the SWT GUI Designer still supported in Eclipse 3.1?
I still have exceptions when trying to create one after a Software Update.
Thx,
Thierry -
Eclipse 3.1 RC1 released[ Go to top ]
- Posted by: Mark N
- Posted on: June 03 2005 08:31 EDT
- in response to Joseph Ottinger
there are no "new and noteworthy"
I thought I was going blind cause I couldn't find them. And I KNOW I haven't taken any Viagra. :p -
Eclipse 3.1 RC1 released[ Go to top ]
- Posted by: Dave Bolt
- Posted on: June 03 2005 09:08 EDT
- in response to Mark N
Most of the new features are in other Eclipse projects (ex. Webtools) instead of the core SDK which is just the platform + the Java development tools (JDT) and the Plug-in development environment (PDE)
Take a look at the master timeline at http://www.eclipse.org/org/processes/master-timeline.php to see the current planned release schedule for some of the major projects.
The list of 3.1 features is summarized at http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html
Dave -
Together EC broken[ Go to top ]
- Posted by: Romen Law
- Posted on: June 04 2005 09:33 EDT
- in response to Joseph Ottinger
Unfortunately the Together plugin doesn't work any more.
cheers
romen