public ShopTableModel(final ShopTable shopTable) {
   this.shopTable = shopTable;
   this.inventory = shopTable.getInventory();
   inventory.addInventoryChangeListener(this);
   this.shownCategories = new ArrayList<>();
 }