java
java copied to clipboard
Generated fields such as "com", "org" or "java" can conflict with package names
If a field is named org
, the JVM considers anything that start with org
as a reference to the field. However, org
may also be desired to represent the root of the org.foo.bar...
package name.
The preliminary solution to this bug will fix the conflict for com
, org
and java
, but there will remain a possibility that a field's name may conflict with the root package name of types declared in <binding>
tags.