package bridge; public class UpdateCommand extends Command { private Date modified; public UpdateCommand(CommandImpl impl) { super(impl); } public boolean Execute() { boolean res = super.Execute(); modified = impl.getExecTime(); return res; } return modified; } }