- ConnectingTheDots . . . . 9 matches
BoardPanel - View. 실제 Swing 등 구체적 라이브러리들을 이용, 실제 표현을 한다. BoardPresenter 와 상호참조 관계를 가진다.
BoardPresenter - Presenter. Game 과 BoardPanel 사이의 일종의 Mediator. Game 은
BoardPanel boardPanel = new BoardPanel();
boardPanel.setGame(_game);
실제로 BoardPanel.setGame 을 보면
이다. (BoardPresenter 에서 listener 는 BoardPanel)
그리고 BoardPanel 에서 이벤트 발생시에는
BoardPanel.mouseReleased -> BoardPresenter.processClick -> Game.join 식으로 호출되며
Game.boxClosed -> listener.boxClosed (여기서 listener 는 Presenter. Presenter 들은 여러개가 될 수 있다. Game 객체에 addListener 로 등록된 만큼) -> BoardPanel.drawInitials. 식으로 도메인 모델로부터 올라온다.
Found 1 matching page out of 7555 total pages (5000 pages are searched)
You can also click here to search title.