package com.gamingmesh.jobs.container; import java.util.ArrayList; import java.util.HashMap; import java.util.List; public class ShopItem { private String NodeName = null; private double price = 0D; private int slot = -1; private int page = -1; private int IconId = 1; private int IconData = 0; private int IconAmount = 1; private String IconName = null; private List IconLore = new ArrayList(); private boolean HideWithoutPerm = false; private List RequiredPerm = new ArrayList(); private HashMap RequiredJobs = new HashMap(); private List Commands = new ArrayList(); private List items = new ArrayList(); public ShopItem(String NodeName, double price, int IconId) { this.NodeName = NodeName; this.price = price; this.IconId = IconId; } public void setPage(Integer page) { this.page = page; } public int getPage() { return this.page; } public void setSlot(Integer slot) { this.slot = slot; } public int getSlot() { return this.slot; } public void setitems(List items) { this.items = items; } public List getitems() { return this.items; } public void setCommands(List Commands) { this.Commands = Commands; } public List getCommands() { return this.Commands; } public void setRequiredJobs(HashMap RequiredJobs) { this.RequiredJobs = RequiredJobs; } public HashMap getRequiredJobs() { return this.RequiredJobs; } public void setRequiredPerm(List RequiredPerm) { this.RequiredPerm = RequiredPerm; } public List getRequiredPerm() { return this.RequiredPerm; } public void setHideWithoutPerm(boolean HideWithoutPerm) { this.HideWithoutPerm = HideWithoutPerm; } public boolean isHideWithoutPerm() { return this.HideWithoutPerm; } public void setIconLore(List IconLore) { this.IconLore = IconLore; } public List getIconLore() { return this.IconLore; } public String getNodeName() { return this.NodeName; } public int getIconId() { return this.IconId; } public int getIconData() { return this.IconData; } public void setIconData(int IconData) { this.IconData = IconData; } public double getPrice() { return this.price; } public void setIconAmount(int IconAmount) { this.IconAmount = IconAmount; } public int getIconAmount() { return this.IconAmount; } public void setIconName(String IconName) { this.IconName = IconName; } public String getIconName() { return this.IconName; } }