private Box __generateCalculateButton() {
Box theBox = Box.createHorizontalBox();
JButton theCalculateButton = new JButton("Calculate");
theBox.add(theCalculateButton);
theCalculateButton.addActionListener(new CalculateButtonActionListener(this));
return theBox;
}