View Single Post
  #10 (permalink)  
Old 05-13-2008, 12:22 PM
crazydeo crazydeo is offline
Member
 
Join Date: May 2008
Posts: 21
crazydeo is on a distinguished road
Code:
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.
Reply With Quote