我需要使用新插件在单击自定义菜单项条目时打开一个属性页。我需要添加什么?
我的plugins.xml

此plugin.xml无法产生预期的结果。

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
     point="org.eclipse.ui.propertyPages">
   <page
        class="com.abc.gis.map.displayscale.DisplayPropertiesSummary"
        id="com.abc.gis.map.displayScale.page3"
        name="Test"
        objectClass="net.refractions.udig.project.IMap">
  </page>
  </extension>

   <extension
          point="org.eclipse.ui.handlers">
    <handler
          class="com.abc.gis.map.displayscale.DisplayPropertiesCommandHandler"
          commandId="com.abc.gis.map.displayscale.displayProperties">
       <enabledWhen>
          <iterate
                ifEmpty="false"
                operator="or">
             <adapt
                   type="net.refractions.udig.project.IMap">
             </adapt>
             <instanceof
                   value="net.refractions.udig.project.IMap">
             </instanceof>
          </iterate>
       </enabledWhen>
    </handler>
    </extension>

 </plugin>


我试图打开一个简单的属性页,其中将包含我的用户输入工具,例如此属性页中的单选按钮。单击我的自定义菜单项,将打开该属性页。

最佳答案

您可以使用createPropertyDialogOnorg.eclipse.ui.dialogs.PreferencesUtil方法显示特定的属性页。就像是:

PreferencesUtil.createPropertyDialogOn(getShell(), obj, id, new String[] {id}, input).open()

08-18 16:39