001package myhw2.data; 002 003import myhw2.command.Command; 004 005/** 006 * Implementation of command to add or remove inventory. 007 * @see Data 008 */ 009final class CmdAdd implements Command { 010 private InventorySet inventory; 011 private Video video; 012 private int change; 013 CmdAdd(InventorySet inventory, Video video, int change) { 014 this.inventory = inventory; 015 this.video = video; 016 this.change = change; 017 } 018 public boolean run() { 019 // TODO 020 return false; 021 } 022}