NetBeans 平台中的 org.netbeans.modules.options.editor.spi.PreferencesCustomizer 是什么?
What is org.netbeans.modules.options.editor.spi.PreferencesCustomizer in the NetBeans Platform?
我正在将基于 NetBeans Platform 8.2 的旧应用程序移植到新的 NetBeans Platform 11.2 版本。此应用程序包含对以下 类 的引用:
org.netbeans.modules.options.editor.spi.PreferencesCustomizer
org.netbeans.modules.options.editor.spi.PreviewProvider
我无法通过谷歌搜索、Maven Central 搜索或在 Apache NetBeans 邮件列表上询问找到它们。
有谁知道这些是什么,在哪里可以找到它们? Maven 坐标是理想的,但只要下载他们的 JAR 或源代码也可以。
这两个接口可以在这个依赖中找到:
<dependency>
<groupId>org.netbeans.modules</groupId>
<artifactId>org-netbeans-modules-options-editor</artifactId>
<version>RELEASE112</version>
</dependency>
以及它们在 GIT 存储库(包含相当广泛的文档)中的位置:
我正在将基于 NetBeans Platform 8.2 的旧应用程序移植到新的 NetBeans Platform 11.2 版本。此应用程序包含对以下 类 的引用:
org.netbeans.modules.options.editor.spi.PreferencesCustomizer
org.netbeans.modules.options.editor.spi.PreviewProvider
我无法通过谷歌搜索、Maven Central 搜索或在 Apache NetBeans 邮件列表上询问找到它们。
有谁知道这些是什么,在哪里可以找到它们? Maven 坐标是理想的,但只要下载他们的 JAR 或源代码也可以。
这两个接口可以在这个依赖中找到:
<dependency>
<groupId>org.netbeans.modules</groupId>
<artifactId>org-netbeans-modules-options-editor</artifactId>
<version>RELEASE112</version>
</dependency>
以及它们在 GIT 存储库(包含相当广泛的文档)中的位置: