2

对于eclipse插件开发,如何知道plugin.xml中有哪些标签可用?
有可用的标签列表吗?

4

2 回答 2

2

plugin.xml 中可用的标记集不是有限的,在不同的 Eclipse 安装中也不相同。扩展点由确定其 plugin.xml 子集架构的各种插件提供。

为了理解这一点,不要使用文本编辑器来编辑 plugin.xml 文件。始终使用 PDE 附带的基于表单的编辑器。它将指导您发现可用的扩展点及其属性。

于 2013-07-09T16:56:22.123 回答
0

eclipse.org给出的文章中你需要在plugin.xml

<?xml version="1.0"?>
<plugin
    name="Eclipse Hello World Example"
    id="org.eclipse.examples.helloworld"
    version="0.0.0"
    provider-name="OTI">

    <requires>
    <import plugin="org.eclipse.core.resources"/>
        <import plugin="org.eclipse.ui"/>
    </requires>

    <runtime>
    <library name="helloworld.jar"/>
    </runtime>

    <extension point = "org.eclipse.ui.actionSets">
        <actionSet
            id="org.eclipse.examples.helloworld.HelloWorldActionSet"
            label="Hello World"
        visible="true"
        description="The action set for the Eclipse Hello World example">
        <menu
        id="org.eclipse.examples.helloworld.HelloWorldMenu"
        label="Samples">
        <separator name="samples"/>
        </menu>
        <action id="org.eclipse.examples.helloworld.actions.HelloWorldAction"
        menubarPath="org.eclipse.examples.helloworld.HelloWorldMenu/samples"
        toolbarPath="Normal"            
        label="Hello World"
        tooltip="Press to see a message"
        icon="icons/helloworld.gif"
        class="org.eclipse.examples.helloworld.HelloWorldAction"/>
        </actionSet>
    </extension>
</plugin>

只需plugin.xml根据您的插件配置编辑文件并放置这些标签
您可以使用 Eclipse 使用默认文本编辑器编辑此文件。为此,请选择Window -> Preferences, 展开 Workbench 条目,然后选择File Associations。添加资源扩展 xml,并将文本编辑器添加到其关联中。现在,当您尝试打开 .xml 文件的编辑器时,您将使用默认的文本编辑器进行操作。PDE 使复杂插件更容易做到这一点

于 2013-07-09T05:53:44.533 回答