I am trying to extend Plot.java in a Jython class and use "setSize() and setButtons()" methods in Plot.java in Histogram.py subclass. However, I cannot do so I get the error that global variable setSize() is not defined. Can someone tell me what the problem is?
class Histogram(Plot):
dataset = 0;
def __init__(self):
theJFrame = JFrame();
theJFrame.setSize(400, 350); #outer box
setSize(self,350, 300); #graph window
setButtons(self,true); #buttons to print, edit, etc.
setMarksStyle(self,"none"); #do not show marks at points