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