-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTool.java
More file actions
41 lines (29 loc) · 725 Bytes
/
Tool.java
File metadata and controls
41 lines (29 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
public class Tool {
private String productName;
private Integer quantity;
private Double unitPrice;
public Tool() {}
public Tool(String productName, Integer quantity, Double unitPrice) {
this.productName = productName;
this.quantity = quantity;
this.unitPrice = unitPrice;
}
public String getProductName() {
return productName;
}
public Integer getQuantity() {
return quantity;
}
public Double getUnitPrice() {
return unitPrice;
}
public void setProductName(String pName) {
this.productName = pName;
}
public void setQuantity(Integer qty) {
this.quantity = qty;
}
public void setUnitPrice(Double uPrice) {
this.unitPrice = uPrice;
}
}