| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- kibana
- Git
- 후기
- 스프링
- java8
- 인터페이스
- Web
- elasticsearch
- effective
- 엘라스틱서치
- node
- 리뷰
- Spring Boot
- 독후감
- jface
- JPA
- 자바
- 이펙티브
- nodejs
- error
- javascript
- java
- MySQL
- 알고리즘
- RCP
- 자바스크립트
- 맛집
- boot
- Spring
- 백준
Archives
- Today
- Total
wedul
RCP ActivePage Hide and Show 본문
반응형
IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IViewReference viewReference = activePage.findViewReference(ContentTreeViewer.ID);
if (viewReference == null) {
try {
activePage.showView(ContentTreeViewer.ID);
} catch (PartInitException e) {
LOGGER.error("OpenSlipView Error : " , e);
}
} else {
activePage.hideView(viewReference);
}
반응형
'RCP > RCP' 카테고리의 다른 글
| RCP ProgressDialog를 이용한 TableViewer 데이터 엑셀로 내보내기 (0) | 2016.12.24 |
|---|---|
| RCP workbench 글로벌 후크 (0) | 2016.12.24 |
| RCP ActivePage에 특정 View 열기 (0) | 2016.12.24 |
| rcp 구조 및 기초 (1) | 2016.12.24 |
| Viwer의 종류와 프로바이더 종류 및 설명 (0) | 2016.12.23 |
