Changes between Version 102 and Version 103 of j2p
- Timestamp:
- 07/08/24 16:53:27 (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v102 v103 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 ||How can I avoid cast||Use Double.valueOf(), Integer.valueOf(), Character.... etc||