public void actionPerformed(ActionEvent evt)
{
nameString = bookNameTextField.getText();
quantityInteger = Integer.parseInt(quantityTextField.getText());
priceDouble = Double.parseDouble(priceTextField.getText());
myOrder.Calculation(quantityInteger, priceDouble);
displayOutput();
The method Calculation is undefined for the type Calculation is the error that im getting now.