authorField.setText(report.getAuthor());
descriptionField.setText(report.getDescription());
}
protected void doSave() {
SummaryCommand cmd =
new SummaryCommand(report, nameField.getText(), titleField.getText(),
authorField.getText(), descriptionField.getText());
cmd.perform();
commands.add(cmd);
}