| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 자바스크립트
- kibana
- Spring Boot
- Git
- nodejs
- 스프링
- 맛집
- 이펙티브
- node
- boot
- 인터페이스
- 후기
- java
- MySQL
- 백준
- JPA
- effective
- 리뷰
- 알고리즘
- 엘라스틱서치
- jface
- Web
- elasticsearch
- error
- javascript
- java8
- 독후감
- Spring
- RCP
- 자바
Archives
- Today
- Total
wedul
RCP ActivePage에 특정 View 열기 본문
반응형
RCP ActivePage에 특정 View 열기
IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IViewReference viewReference = activePage.findViewReference(SlipView.ID);
if (viewReference == null) {
try {
activePage.showView(SlipView.ID);
} catch (PartInitException e) {
LOGGER.error("OpenSlipView Error : " , e);
}
}
반응형
'RCP > RCP' 카테고리의 다른 글
| RCP ActivePage Hide and Show (0) | 2016.12.24 |
|---|---|
| RCP ProgressDialog를 이용한 TableViewer 데이터 엑셀로 내보내기 (0) | 2016.12.24 |
| RCP workbench 글로벌 후크 (0) | 2016.12.24 |
| rcp 구조 및 기초 (1) | 2016.12.24 |
| Viwer의 종류와 프로바이더 종류 및 설명 (0) | 2016.12.23 |