| 49 | |
| 50 | ==== Classes |
| 51 | Classes are by default translated using the "Stub" translator which assumes |
| 52 | assumes the class names and modules are identical in Python and Java, |
| 53 | and that all functions have the same functions with the same arguments and types. |
| 54 | |
| 55 | References to classes in the code (SomeClass.class in java) translates to SomeClass in Python. It is assumed the proper imports are done on the python side to enable this. |
| 56 | |
| 57 | This default translation can be overridden using custom translators. |