- Item - Class in test3
-
A class that represents an item in a bill of sale.
- Item(String, int) - Constructor for class test3.Item
-
Initialize an item by setting its description and price.
- Item(Item) - Constructor for class test3.Item
-
Initialize an item by copying another item.
- ItemizedBill - Class in test3
-
A bill that includes an itemized list of purchased items, the date that the
bill was created, and a total price of all of the items in the bill.
- ItemizedBill() - Constructor for class test3.ItemizedBill
-
Initialize this bill so that its total is zero, its list of items is
empty, and its date is the current date.
- ItemizedBill(List<Item>) - Constructor for class test3.ItemizedBill
-
Initialize this bill from a list of purchased items.
- ItemizedBill(ItemizedBill) - Constructor for class test3.ItemizedBill
-
Initialize this bill by copying another bill.