Changes between Version 103 and Version 104 of j2p


Ignore:
Timestamp:
07/08/24 16:54:27 (4 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • j2p

    v103 v104  
    315315||=Question=||=Explanation=||
    316316||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||
     317||I get an error that casting primitives is not supported.||Instead use Double.valueOf(), Integer.valueOf(), Character.... etc||