Eclipse2009. 6. 23. 08:22



위와 같이 이클립스에서 변수나 메서드 등을 클릭하면 같은 유형의 Text를 하이라이팅 해 줍니다. 가끔 이 기능이 안되는 경우가 생기는데 여태까지 그걸 몰라서 이클립스를 다시 깔고 했었어요. 이번엔 도저히 안되겠다 싶어 구글링을 했더니 1분도 안되서 답이 나와버려 김이 빠져버렸습니다.

Use "Windows -> Preferences -> Java -> Editor -> Mark Occurrences -> Mark occurrences of the selected element in the current file"

상당히 간단명로하게 설명되어 있네요. ㅠㅠ

찾은곳 [ http://dev.eclipse.org/newslists/news.eclipse.newcomer/msg19222.html ]


출처 : http://eloid.tistory.com/49

'Eclipse' 카테고리의 다른 글

이클립스 콘솔에 가비지콜렉터 로그 찍기  (0) 2008.12.12
Posted by Main()
Eclipse2008. 12. 12. 16:58
Eclipse -> Servers탭 -> Over View창 -> General Information -> Open launch configuration
-> Edit launch configuration properties창 -> Arguments탭 -> VM arguments
입력란에 아래 옵션 추가

-Xms128m -Xmx128m -XX:PermSize=64m -XX:MaxPermSize=128m -verbose:gc
Posted by Main()