Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package src;
  2.  
  3. public class Item {
  4.  
  5. public String name;
  6. public int itemNumber;
  7. public int qty;
  8. public double price;
  9. public Item next;
  10.  
  11. public Item(String name, int itemNumber, int qty, double price) {
  12.  
  13. this.name = name;
  14. this.itemNumber = itemNumber;
  15. this.qty = qty;
  16. this.price = price;
  17. }
  18.  
  19. public void displayItem() {
  20.  
  21. System.out.println(name + " " + itemNumber + " " + qty + " " + price);
  22. System.out.println();
  23. }
  24.  
  25. }