-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProduct.java
More file actions
89 lines (81 loc) · 2.29 KB
/
Product.java
File metadata and controls
89 lines (81 loc) · 2.29 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* Copyright (C) 2011,2015 Karl R. Wurst, Aparna Mahadev
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
import java.text.*; // for NumberFormat
import java.util.*; // for Locale
/**
* Represents a Product with a name, price.
*
* @author Karl R. Wurst
* @author Aparna Mahadev
* @version 1
*/
public class Product {
private String name;
private double price;
/**
* Creates a Product.
*
* @param name the name for this product.
* @param price the price for this product.
*/
public Product(String name, double price) {
this.name = name;
this.price = price;
}
/**
* Sets the name for this product.
*
* @param name the name for this product.
*/
public void setName(String name) {
this.name = name;
}
/**
* Returns the name for this product.
*
* @return the name for this product.
*/
public String getName() {
return name;
}
/**
* Sets the price for this product.
*
* @param price the price for this product.
*/
public void setPrice(double price) {
this.price = price;
}
/**
* Returns the price for this product.
*
* @return the price for this product.
*/
public double getPrice() {
return price;
}
/**
* Returns a printable representation of a Product
*
* @return a printable representation of a Product
*/
public String toString() {
NumberFormat n = NumberFormat.getCurrencyInstance(Locale.US);
return "Product: " + name + "\tPrice: " + n.format(price) + " each";
}
}