ウィンドウが閉じられたときにサウンドを停止したいのですが、破棄時にアクションリストナーを追加するにはどうすればよいですか?
public Tetris(boolean sound) {
statusbarLabel = new JLabel(" 0");
add(statusbarLabel, BorderLayout.SOUTH);
Board board = new Board(this);
if(sound){
Sound.gameSound.play();
}
add(board);
board.start();
setSize(200, 400);
setTitle("Tetris");
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
this.setLocationRelativeTo(null);
this.setVisible(true);
}