Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Debug/Java7"

(New page: {{Debug}} This page summarizes all the work that must be done to add Java(tm) 7 support to JDT Debug. == Current Status == {| cellspacing="0" cellpadding="5" border="1" align="center" |...)
 
(Current Status)
 
(8 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
This page summarizes all the work that must be done to add Java(tm) 7 support to JDT Debug.
 
This page summarizes all the work that must be done to add Java(tm) 7 support to JDT Debug.
  
== Current Status ==
+
== Current Status at a Glance ==
  
 
{| cellspacing="0" cellpadding="5" border="1" align="center"
 
{| cellspacing="0" cellpadding="5" border="1" align="center"
Line 12: Line 12:
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(206, 242, 206);" | Try-with-Resources
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(206, 242, 206);" | Try-with-Resources
 
|-
 
|-
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Simplified Varargs Method Invocation
+
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(206, 242, 206);" | Diamond
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Diamond  
+
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(206, 242, 206);" | Polymorphic Methods
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Polymorphic Methods  
+
 
|}
 
|}
 +
  
 
{| cellspacing="0" cellpadding="5" border="1" style="width: 300px; height: 25px;"
 
{| cellspacing="0" cellpadding="5" border="1" style="width: 300px; height: 25px;"
Line 28: Line 28:
 
| Not tested yet
 
| Not tested yet
 
|}
 
|}
 +
 +
== Current Status ==
 +
 +
*Support for switch on strings has been added and tested - [https://bugs.eclipse.org/bugs/show_bug.cgi?id=350325 bug 350325] - FIXED
 +
*Support for multi-catch has been added (UnifiedTypes) and tested - [https://bugs.eclipse.org/bugs/show_bug.cgi?id=349400 bug 349400] - FIXED
 +
*Support for try-with-resource has been added and tested - [https://bugs.eclipse.org/bugs/show_bug.cgi?id=349400 bug 349400] - FIXED
 +
*Support for Diamond has been tested - no issues found
 +
*Support for polymorphic methods has been tested - no issues found
 +
*Support for simplified varargs - [https://bugs.eclipse.org/bugs/show_bug.cgi?id=350745 bug 350745]
 +
 +
== Remaining Work ==
 +
 +
No remaining work.
 +
 +
== How to Test ==
 +
 +
Instructions on how to test the Java(tm) 7 support can be found on the [[JDT_Core/Java7#What_to_do_to_set_up_the_IDE|JDT Core wiki page]].

Latest revision as of 15:10, 25 August 2011

Platform Debug
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source
JDT Debug
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

This page summarizes all the work that must be done to add Java(tm) 7 support to JDT Debug.

Current Status at a Glance

Java 7 features
Switch on Strings Multi-catch Try-with-Resources
Diamond Polymorphic Methods


   Completely implemented

Partially implemented or "can be improved"

Not tested yet

Current Status

  • Support for switch on strings has been added and tested - bug 350325 - FIXED
  • Support for multi-catch has been added (UnifiedTypes) and tested - bug 349400 - FIXED
  • Support for try-with-resource has been added and tested - bug 349400 - FIXED
  • Support for Diamond has been tested - no issues found
  • Support for polymorphic methods has been tested - no issues found
  • Support for simplified varargs - bug 350745

Remaining Work

No remaining work.

How to Test

Instructions on how to test the Java(tm) 7 support can be found on the JDT Core wiki page.

Back to the top