JythonHelper icon indicating copy to clipboard operation
JythonHelper copied to clipboard

Generate Python skeleton for Java classes in Jython projects.

Results 2 JythonHelper issues
Sort by recently updated
recently updated
newest added

For some reason the stubs created by JythonHelper causes loads of this errors for me? If I zap the stubs, the error goes away. ``` from javax.swing import AbstractAction class...

Example code: ``` class MyJFrame(JFrame): def __init__(self, frameTitle=None): super(JFrame, self).__init__(frameTitle) self.myJFrameVersion = 2 self.isActiveInMoneydance = False self.isRunTimeExtension = False self.MoneydanceAppListener = None self.HomePageViewObj = None ``` IntelliJ PyCharm reports 'Old-style...