X697: ItemToPurchase class exercise 2

Write getter and setter methods for each field in the ItemToPurchase class. If you get an error saying "cannot find symbol", then you are missing one of the getter and/or setter methods.

Your Answer:

x
 
1
class ItemToPurchase {
2
    private String name;
3
    private double price;
4
    private int quantity;
5
                    
6
    /*
7
    * DO NOT CHANGE THE CONSTRUCTOR!
8
    */
9
    public ItemToPurchase() {
10
        name = "";
11
    }
12
    /*
13
    * PUT YOUR CODE BELOW THIS COMMENT!
14
    */
15
16
17
    
18
}
19

Feedback

Your feedback will appear here when you check your answer.