import java.awt.event.ActionEvent;
import javax.swing.*;

public class FileCloseAction extends AbstractAction {
  Mozart theApp;

  public FileCloseAction(Mozart mz) {
    super("Close");
    theApp = mz;
  }

  public void actionPerformed(ActionEvent event) {
    System.out.println("Close the current window");
  }
}
