3

我现在面临这个问题大约一个小时,我不知道我做错了什么。您在我的 plugin.xml 代码中看到错误了吗?

<extension
     point="org.eclipse.ui.perspectiveExtensions">
  <perspectiveExtension
        targetID="de.tps.client.workspace.perspective">
     <view
           closeable="true"
           id="de.tps.client.inboxplusplus.views.inboxplusplusview"
           minimized="false"
           moveable="true"
           ratio="0.3"
           relationship="bottom"
           relative="de.tps.client.iteminfo.view"
           showTitle="false"
           standalone="false"
           visible="true">
     </view>
  </perspectiveExtension>

和观点:

<extension
     point="org.eclipse.ui.views">
  <view
        allowMultiple="false"
        category="com.contmgmt.client.category"
        class="de.tps.client.inboxplusplus.views.Inboxplusplusview"
        id="de.tps.client.inboxplusplus.views.inboxplusplusview"
        name="%view.inbox.name"
        restorable="true">
  </view>

任何建议将不胜感激。

4

1 回答 1

6

对我来说它工作得很好。我想您需要重置透视图,因为没有此视图的旧布局已保存。

单击顶部菜单:首选项 -> 重置透视。

此信息存储在:$workspace/.metadata/.plugins/org.eclipse.ui.workbench/workbench.xml

于 2013-05-27T13:33:45.080 回答