Changes between Version 76 and Version 77 of j2p
- Timestamp:
- 05/16/24 10:44:46 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v76 v77 42 42 The {{{static}}} keyword results in fields being set in the class definition object. 43 43 44 Fields in Java have to be initialized in the __init__function in the python translation.44 Fields in Java have to be initialized in the {{{__init__}}} function in the python translation. 45 45 46 46 Overloaded methods can not be handled by default python and need to be handled using an external library {{{plum-dispatch==2.2.2}}} and result in additional {{{@dispatch}}} annotations in the translated code. If you use overloading, you need to have plum installed to run your code. Check also the #@NonNull section.