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 "PDE/API Tools/Java8"

< PDE‎ | API Tools
(Current Status at a Glance)
(Current Status at a Glance)
Line 8: Line 8:
 
|-
 
|-
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | [https://bugs.eclipse.org/bugs/show_bug.cgi?id=427495 Default Methods]
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | [https://bugs.eclipse.org/bugs/show_bug.cgi?id=427495 Default Methods]
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Lambda Expressions
+
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | [https://bugs.eclipse.org/bugs/show_bug.cgi?id=427496 Lambda Expressions]
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Type Annotations
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Type Annotations
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Method References
 
! width="200" align="center" style="background: none repeat scroll 0% 0% rgb(242, 206, 206);" | Method References

Revision as of 14:25, 5 February 2014

API Tools
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™ 8 support to API Tools.

Current Status at a Glance

Java 8 features
Default Methods Lambda Expressions Type Annotations Method References Update to ASM 5.x


   Completely tested

Partially tested or "requires more testing"

Not tested yet

Current Status

The root bug for tracking all Java 8 work in API tools is bug 410447 So far there are 4 nodes that we need to support in usage and tag scanning:

  • IntersectionType
  • LambdaExpression
  • PackageQualifiedType
  • ExtraDimension

We have to update ASM to a 5.x version to have the delta comparator work. This is covered in bug 390930

Remaining Work

TBD

How to Test

  1. Get the API tools source from the PDE UI git repo.
  2. Follow the instructions on testing the Java™ 8 support on the JDT Core wiki page.

Back to the top