1

在 eclipse 3.4 中,这是我的 plugin.xml 的部分:

<extension point="org.eclipse.ui.views">
  <view
    allowMultiple="true"
    class="the.full.class.name"
    icon="images/icon.gif"
    id="VIEWNAME"
    name="View Name">
  </view>
</extension>
<extension point="org.eclipse.ui.perspectiveExtensions">
  <perspectiveExtension targetID="MY_PERSPECTIVE_ID">
     <view
        closeable="false"
        id="VIEWNAME:secondaryid"
        minimized="false"
        moveable="false"
        ratio=".75"
        relationship="left"
        relative="org.eclipse.ui.editorss"
        showTitle="true"
        standalone="true"
        visible="true">
      </view>
    </perspectiveExtension>
  </extension>

该应用程序运行良好,我就是无法摆脱那个烦人的警告!

4

2 回答 2

0

您可能会遇到此错误 https://bugs.eclipse.org/bugs/show_bug.cgi?id=287551

于 2010-07-29T19:33:09.503 回答
0

透视扩展
扩展点需要实际的视图 ID。因为在你的情况下它是'VIEWNAME',因此对于
透视扩展
id 字段使用相同。

完成此操作后,重置您的 Eclipse 透视图并再次打开它。

于 2010-06-23T09:34:46.940 回答