| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 리뷰
- 백준
- 맛집
- 독후감
- Git
- RCP
- 인터페이스
- java
- Spring Boot
- JPA
- jface
- 후기
- node
- java8
- boot
- error
- javascript
- 이펙티브
- elasticsearch
- 엘라스틱서치
- 스프링
- MySQL
- Spring
- 자바
- nodejs
- Web
- 자바스크립트
- effective
- kibana
- 알고리즘
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 |