Eclipse show view向导说使用f2显示描述...但是在哪里设置视图的描述

时间:2012-09-19 07:16:18

标签: eclipse eclipse-plugin swt eclipse-rcp

在Eclipse窗口>显示视图中,我们可以在底部看到一条文字“使用f2显示所选视图的描述”,如果我们选择任何视图并按f2,它总是显示“无描述”。 现在我创建了一个View,该视图在showView eclipse菜单中可用,但我想设置相同的描述。 所以在ViewPart中,我需要完成描述设置。

enter image description here

1 个答案:

答案 0 :(得分:1)

根据this错误报告,说明是在description中的视图的plugin.xml标记中设置的。

一个例子:

<view
    name="Sample View"
    icon="icons/sample.gif"
    category="test"
    class="test.views.SampleView"
    id="test.views.SampleView">
    <description>A very long descriptive text.
                 With a new line comes still more.
                 And more ... and more.</description>
</view>

结果:

enter image description here