import java.awt.event.ActionEvent;
import javax.swing.*;

public class FileSaveAction extends AbstractAction {
  Mozart mozart;

  public FileOpenAction(Mozart mz) {
    super("Save", new ImageIcon("images/save.gif"));
    mozart = mz;
  }

  public void actionPerformed(ActionEvent event) {
    System.out.println("Save the active document.");

    
  }
}
