1. public class ExecutionPlanPart extends EditorPart 클래스 생성
2. public class ExecutionPlanUnit implements IEditorInput 클래스 생성
3. 뷰 생성 소스
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (window == null) {
return;
}
IEditorInput input = new ExecutionPlanUnit();
try {
IEditorPart editor = window.getActivePage().openEditor(input, ExecutionPlanPart.ID);
} catch (PartInitException e) {
logger.error(e.getMessage());
} finally {
}
if (window == null) {
return;
}
IEditorInput input = new ExecutionPlanUnit();
try {
IEditorPart editor = window.getActivePage().openEditor(input, ExecutionPlanPart.ID);
} catch (PartInitException e) {
logger.error(e.getMessage());
} finally {
}
4. plugin.xml에 extensions 추가
TAG 큐브리드
