如何将 Java bean 属性设置为专家属性?

发布于 2024-12-02 07:04:51 字数 246 浏览 0 评论 0原文

Java Beans Introspection API 在 PropertyDescriptor 类中包含方法 isExpert。基于 Bean 的 GUI 编辑器(例如 WindowsMaker)使用它来隐藏或显示“外来”属性。

是什么导致 Java bean 的某个属性被认为是“专家”?例如,Swing 库如何将某些属性设置为“专家属性”?如何以编程方式对我编写的 Java bean 执行相同的操作?

The Java Beans Introspection API includes in the PropertyDescriptor class the method isExpert. Bean-based GUI editors, like WindowsMaker, use this to hide or show "exotic" properties.

What causes a certain property of a Java bean to be considered "expert"? How does the Swing library, for example, sets certain properties as "expert properties"? How can I programmatically do the same for Java beans that I write?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫瑾少女 2024-12-09 07:04:51

这显然是在 JDK 中使用非标准编译器扩展完成的。

如果您查看 Swing 源代码,一些 Javadoc 注释包含 @beaninfo 标记,其中包含此类信息:

/**
 * ... Some comment ...
 * @beaninfo
 *        bound: true
 *       expert: true
 */
public void setSomething(SomeType value) {
    // ...
}

这是一个示例,位于 JTable 类源代码

我还找到了这篇文章,谈论@ beaninfo 标签。

This apparently is done in the JDK using a non-standard compiler extension.

If you have a look at the Swing source code, some Javadoc comments include a @beaninfo tag, containing such information:

/**
 * ... Some comment ...
 * @beaninfo
 *        bound: true
 *       expert: true
 */
public void setSomething(SomeType value) {
    // ...
}

Here is an example, in the JTable class source code.

I also found this article, talking about the @beaninfo tag.

请远离我 2024-12-09 07:04:51

您可以为您的 bean 创建一个 BeanInfo 类。这允许您自定义属性描述符。 JavaBean 教程中有一节介绍了这一点。

You can create a BeanInfo class for your bean. This allows you to customize the property descriptor. There is a section covering this in the JavaBean tutorial.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文