001package myhw3.data; 002 003import myhw3.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 Record oldvalue; 012 private Video video; 013 CmdOut(InventorySet inventory, Video video) { 014 this.inventory = inventory; 015 this.video = video; 016 } 017 public boolean run() { 018 // TODO 019 return false; 020 } 021 public void undo() { 022 // TODO 023 } 024 public void redo() { 025 // TODO 026 } 027}