Changes between Version 105 and Version 106 of j2p
- Timestamp:
- 07/09/24 10:52:39 (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v105 v106 315 315 ||=Question=||=Explanation=|| 316 316 ||I'm getting "No translator found for X". But X is a class that I'm trying to translate||The java files you are trying to translate are probably not compiled by the java compiler. When the translator finds a method call, it needs the compiled java to determine the proper signature (function name and arguments). You can use the build-helper-maven-plugin to add your additional sources to the standard maven build path.|| 317 ||I get an error that casting primitives is not supported.|| Instead use Double.valueOf(), Integer.valueOf(), Character.toChars() etc||317 ||I get an error that casting primitives is not supported.||Casting of primitives is different from normal casting, it fundamentally changes the data. Instead use Double.valueOf(), Integer.valueOf(), Character.toChars() etc||