Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] Fix for bug 229759

Please review the patch for this bug at the below location:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=229759

Overview:
The JAXB annotations processor assumes any method starting with "get" (or "is" in the case of booleans) is the getter of a property that is to be mapped. This will cause an error if a class being processed has a method just named "get()" or "is()". The attached patch resolves this by verifying the length of the method name in addition to the prefix.

-Matt

Back to the top