gpt4 book ai didi

java - 如何在 Eclipse 中添加关键字以搜索首选项

转载 作者:行者123 更新时间:2023-12-03 23:06:29 24 4
gpt4 key购买 nike

我使用这个例子添加了一个首选项: http://git.eclipse.org/c/platform/eclipse.platform.ui.git/plain/examples/org.eclipse.ui.examples.readmetool/Eclipse%20UI%20Examples%20Readme%20Tool/org/eclipse/ui/examples/readmetool/

实际引用请引用本页: http://git.eclipse.org/c/platform/eclipse.platform.ui.git/plain/examples/org.eclipse.ui.examples.readmetool/Eclipse%20UI%20Examples%20Readme%20Tool/org/eclipse/ui/examples/readmetool/ReadmePreferencePage.java )

我只添加了一个复选框来测试它,当我在“首选项”的复选框中搜索任何单词时,我看不到我的 View 出现但是如果我键入当前 Eclipse 具有的内容,它就会出现(即我键入背景和我可以看到 General 选项卡保持不变并且是粗体)。

我想我不知何故需要添加搜索关键字以指向当前页面(或其他页面)。但我找不到如何添加它,也找不到导致此问题的原因。

那么如何在首选项窗口中搜索我创建的首选项?

最佳答案

org.eclipse.ui.keywords 扩展点允许定义可分配给首选项页面的关键字。

例如:

<extension point="org.eclipse.ui.preferencePages"> 
<page id="com.xyz.prefpage1" name="XYZ" class="...">
<keywordReference id="xyz.Keyword"/>
</page>
</extension>
<extension point="org.eclipse.ui.keywords">
<keyword label="foo" id="xyz.Keyword"/>
</extension>

通过上述扩展,XYZ 首选项页面也可以在关键字 foo 下找到,即当您键入 foo 时它会被列出> 在搜索字段中。

关于java - 如何在 Eclipse 中添加关键字以搜索首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31447017/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com