Eclipse 3.5M2

ist raus. Die Neuerungen halten sich auf der Java-Seite sehr in Grenzen -- echte Knaller (New and Noteworthy) sind nicht dabei.

  • Links in Javadoc headers
  • Select comment with double click
  • Open *.jardesc files with JAR Export Wizard
  • Open test result files in JUnit view
  • JUnit 4.5

Interessanter sind da schon zwei Dinge:

1. Compiler problem for missing synchronized modifier

The compiler now issues a warning when a method overrides a synchronized method but the method itself is not synchronized.

Problem hover with quick fix for missing synchronized modifier

You can use the quick fix to add the synchronized modifier, and you can configure the problem severity on Preferences > Java > Compiler > Errors/Warnings in the Potential programming problems section.

2. Suppress compiler problem for 'switch' case fall-through

The compiler problem for expected fall-throughs in switch case statements can now be suppressed by preceding the following case statement with a comment that starts with $FALL-THROUGH$. This is especially interesting for code that can't use the J2SE-5.0-style @SuppressWarnings("fallthrough") annotation.

Problem hover with quick fixes for switch case fall-through

This problem is not reported by default. You can enable the 'switch' case fall-through warning on Preferences > Java > Compiler > Errors/Warnings in the Potential programming problems section.

Vielleicht ist ja mit 3.5M3 mehr dabei. Geplant ist Milestone M3 am 2008-10-31.

Labels: ,

0 Antwort(en) auf ›Eclipse 3.5M2‹

Kommentar veröffentlichen