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 "EclipseLink/Release/2.1.0"

(Replacing page with '<div style="border: 3px red solid;" align="center" >Release under development see [http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/eclipselink/p...')
m (added info for bug 312950)
Line 1: Line 1:
 
<div style="border: 3px red solid;" align="center" >Release under development see [http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/eclipselink/project-info/plans/2_1_0.xml 2.1.0 Plan]</div>
 
<div style="border: 3px red solid;" align="center" >Release under development see [http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/eclipselink/project-info/plans/2_1_0.xml 2.1.0 Plan]</div>
 +
 +
 +
== Resolved Issues ==
 +
 +
===Property Name Generation from Introspector.decapitalize ===
 +
The decapitalize method will now leave the property name in uppercase if the first and second characters are uppercase. EclipseLink will use the property name as ID, as detailed in the specification.
 +
 +
Note that this may require a change in some JPQL. For example, if previously you had a method with an annotation such as '''getCCustomers''' that would have properties named '''cCustomers''', you will now have '''CCustomers'''.

Revision as of 10:44, 17 May 2010

Release under development see 2.1.0 Plan


Resolved Issues

Property Name Generation from Introspector.decapitalize

The decapitalize method will now leave the property name in uppercase if the first and second characters are uppercase. EclipseLink will use the property name as ID, as detailed in the specification.

Note that this may require a change in some JPQL. For example, if previously you had a method with an annotation such as getCCustomers that would have properties named cCustomers, you will now have CCustomers.

Back to the top