当前位置: 代码迷 >> Eclipse >> Eclipse惯用的视图ID
  详细解决方案

Eclipse惯用的视图ID

热度:41   发布时间:2016-04-23 02:26:15.0
Eclipse常用的视图ID
CUIPlugin.CVIEW_IDIPageLayout.ID_RES_NAVIPageLayout.ID_BOOKMARKSIConsoleConstants.ID_CONSOLE_VIEWIPageLayout.ID_PROP_SHEETIPageLayout.ID_PROBLEM_VIEWIPageLayout.ID_OUTLINElayout.addActionSet(CUIPlugin.SEARCH_ACTION_SET_ID);//layout.addActionSet(IDebugUIConstants.LAUNCH_ACTION_SET);//layout.addActionSet(JavaUI.ID_ACTION_SET);layout.addActionSet(CUIPlugin.ID_CELEMENT_CREATION_ACTION_SET);layout.addActionSet(IPageLayout.ID_NAVIGATE_ACTION_SET);// views - build consolelayout.addShowViewShortcut(IConsoleConstants.ID_CONSOLE_VIEW);		// views - searchinglayout.addShowViewShortcut(NewSearchUI.SEARCH_VIEW_ID);		// views - standard workbenchlayout.addShowViewShortcut(IPageLayout.ID_OUTLINE);layout.addShowViewShortcut(IPageLayout.ID_PROBLEM_VIEW);layout.addShowViewShortcut(CUIPlugin.CVIEW_ID);layout.addShowViewShortcut(IPageLayout.ID_RES_NAV);layout.addShowViewShortcut(IPageLayout.ID_PROP_SHEET);// link - things we should dolayout.addShowInPart(CUIPlugin.CVIEW_ID);layout.addShowInPart(IPageLayout.ID_RES_NAV);
  相关解决方案