RuneHive-Game
Loading...
Searching...
No Matches
ItemHistory.java
Go to the documentation of this file.
1package com.runehive.content.tradingpost;
2
3public class ItemHistory {
4 private final int quantity;
5 private final int itemId;
6 private final int price;
7 private final String seller;
8 private final String buyer;
9
10 public ItemHistory(int quantity, int itemId, int price, String seller, String buyer) {
11 this.quantity = quantity;
12 this.itemId = itemId;
13 this.price = price;
14 this.seller = seller;
15 this.buyer = buyer;
16 }
17
18 public int getQuantity() {
19 return quantity;
20 }
21
22 public int getItemId() {
23 return itemId;
24 }
25
26 public int getPrice() {
27 return price;
28 }
29
30 public String getSeller() {
31 return seller;
32 }
33
34 public String getBuyer() {
35 return buyer;
36 }
37}
ItemHistory(int quantity, int itemId, int price, String seller, String buyer)