在应用程序工作台中添加快速视图并在其中添加视图

时间:2014-01-27 12:49:28

标签: java eclipse-plugin eclipse-rcp perspective

我有rcp应用程序,它有几个视图。我想添加一个快速视图选项作为eclipse ide,以便我可以在其中包含我的所有视图。

我已经尝试了以下所有可能的方法:

在plugin.xml中添加条目

<extension
         point="org.eclipse.ui.perspectiveExtensions">
      <perspectiveExtension
            targetID="my.ui.Perspective">
         <view
               closeable="true"
               id="my.Explorer"
               minimized="false"
               moveable="true"
               ratio="0.95f"
               relationship="fast"
               relative="org.eclipse.ui.editorss"
               showTitle="true"
               standalone="true"
               visible="true">
         </view>
      </perspectiveExtension>
   </extension>

并在applicationworkbenchadvisor中完成了更改

@Override
public void preWindowOpen(IWorkbenchWindowConfigurer configurer) {
    configurer.setInitialSize(new Point(1024, 800));
    configurer.setShowStatusLine(true);
    configurer.setTitle("My application");
    configurer.setShowFastViewBars(true);
}

但是它没有表现出任何例外,也就是投掷。

请尽快计算我做错了什么。

0 个答案:

没有答案