[Applet] 자바 애플릿(Java Applet)에서 마우스 이벤트 구현하기 [Programming Assignment for Module 5]
·
◎ Java/Applet🧳
- 자바 애플릿(Java Applet)에서 마우스 이벤트 구현하기 1. mouseMoved() 메서드 구현 사용자가 마우스를 움직일 때 이벤트 핸들러에 의해 mouseMoved()가 호출되면 지진 마커의 경우 지진 제목을, 도시의 경우 이름, 국가 및 인구를 표시한다. - EarthquakeCityMap.java /** Event handler that gets called automatically when the * mouse moves. */ @Override public void mouseMoved() { // clear the last selection if (lastSelected != null) { lastSelected.setSelected(false); lastSelected = null;..