document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class MainView implements Observer {
  2.     @Override
  3.     public void update(Observable arg0, Object arg1) {
  4.         if (mainModel.isHasMove()) {
  5.             updateView();
  6.         }
  7.     }
  8.    
  9.     private void updateView() {
  10.         boardPanel.updateBoard();
  11.     }
  12. }
');