views:

33

answers:

2

In eclipse 3.4, here is the section of my 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>

The application works fine, I just can't get rid of that annoying warning!

A: 
Favonius
And then the application doesn't work, because the secondary id is not specified correctly. I don't want any instance of this view in the perspective, but a specific instance of it.
Jeremy
A: 

You might be hitting this bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=287551

Ankur