Question: Follopw instructions to define Invoice class. The attributes are private but not final. Define required 4 setters and 4 getters.:package Invoice; public class Invoice {

Follopw instructions to define Invoice class. The attributes are private but not final. Define required 4 setters and 4 getters.:package Invoice;
public class Invoice {
private final String partNumber;
private final String partDescription;
private final int quantity;
private final double pricePerItem;
public Invoice(String partNumber, String partDescription, int quantity, double pricePerItem){
this.partNumber = partNumber;
this.partDescription = partDescription;
this.quantity = quantity;
this.pricePerItem = pricePerItem;
}
public double getInvoiceTotal(){
if (quantity <0){
return 0;
} else {
return quantity * pricePerItem;
}
}
// getters and setters for each attribute

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!