为 Netbeans 6.8 开发插件
我想为 Netbeans 6.8 开发一个插件,但我找不到足够的教程/资源/文章。我能找到的唯一合适的参考链接是 http://platform.netbeans.org/tutorials/ nbm-google.html 作为新手,我发现这还不够。
我正在寻找更好的参考链接,或者如果您之前做过这样的事情,我很想听听您的经历。
谢谢,
I would like to develop a plugin for Netbeans 6.8 but I can't find enough tutorials / resources / articles for the same. The only decent reference link I could find was http://platform.netbeans.org/tutorials/nbm-google.html and being new to this, I find that insufficient.
I'm looking for either links for better references, or if you have done such a thing before I would love to hear about your experiences.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
下面是另外两个示例:
以下是 NetBeans RCP 问题和解答的一些好地方:
如果您还没有这样做,我建议您观看“十大 NetBeans API”截屏视频 - 单击此处查看顶部10 个 API 截屏视频。
另外,如果您需要有关 NetBeans RCP 的更深入的资料,我推荐 Heiko Böck 所著的《NetBeans™ 平台权威指南》一书 - http://apress.com/book/view/9781430224174
Here are two other examples:
These are some a good places form NetBeans RCP questions and answers:
If you haven't already done so, I would recommend watching through the "Top 10 NetBeans APIs" screencasts - click here to view the top 10 api screencasts.
Also, if you need a more indepth source on NetBeans RCP, I recommend the book "The Definitive Guide to NetBeans™ Platform" by Heiko Böck - http://apress.com/book/view/9781430224174
这是NetBeans RCP 在线文档的“前门”。这将使您能够访问大量讨论 NetBeans IDE(构建在该平台上)基础的资源。
有与 NetBeans IDE 版本 6.8 关联的 API 的文档。本文档适用于具有“公共”API 的模块。
您会注意到许多 NetBeans javadoc 都包含信息关于“api”包和“spi”包。通常,插件开发人员将创建“spi”包中的一个或多个接口的实现。 “api”包通常具有开发人员用来从 IDE 访问数据的接口的定义。
您应该订阅几个NetBeans 邮件列表。如果您需要询问有关使用 NetBeans RCP API 的问题,您应该订阅 [电子邮件]受保护] 列表。如果您需要提出有关 NetBeans IDE 扩展开发的问题,您应该订阅 [电子邮件受保护] 列表。订阅该列表有几个好处:
Here is the 'front door' to the on-line documentation for the NetBeans RCP. That will give you access to a lot of resources that discuss the foundations of the NetBeans IDE (which is built on the platform).
There is documentation for the APIs associated with the NetBeans IDE, version 6.8. This documentation is for modules that have 'public' APIs.
You will notice that many of the NetBeans javadocs have info about an 'api' package and an 'spi' package. Typically, a plugin developer will create implementations of one or more of the interfaces that are found in the 'spi' package. The 'api' package usually has the definition of the interfaces that a developer would use to access data from the IDE.
You should subscribe to a couple of the NetBeans mailing lists. If you need to ask questions about using the NetBeans RCP APIs, you should subscribe to the [email protected] list. If you need to ask questions that are focused on the development of extensions to the NetBeans IDE, you should subscribe to the [email protected] list. There are a couple benefits to subscribing to the lists:
您可以按照以下步骤开始使用 NetBeans 用户界面组件:http://www.antonioshome.net/ kitchen/swingnbrcp/(您不需要 NetBeans 来遵循本教程)。
You can get started with NetBeans user-interface components by following this: http://www.antonioshome.net/kitchen/swingnbrcp/ (you don't need NetBeans to follow the tutorial).
NetBeans 是由 Oracle 捐赠给 Apache 基金会的。作为其中的一部分,提供的一些链接可能已过时。
建议查看以下一些链接:
有些材料可能尚未迁移,因此在这些情况下,可能需要通过 archive.org Way Back 机器搜索材料。
NetBeans was donated from Oracle to the Apache foundation. As part of this some of the links provided may be out of date.
Suggest checking out some of the following links:
Some of the materials may not have been migrated over so in these cases it may be necessary to search for the materials via the archive.org Way Back machine.