netbeans:API 版本控制选项卡,公共包 org.demo.textfilter 不会自动导入
上的教程进行操作
按照http://platform.netbeans.org/tutorials/ nbm-quick-start.html#lookup
“右键单击“TextFilter”模块,选择“属性”,然后使用“API 版本控制”选项卡,以便指定包含该接口的包应在整个应用程序中可用:“ (org.demo.textfilter 设置为 public)
问题是,这个公共包不会被另一个模块中依赖于 TextFilter 模块的另一个类自动导入。每当添加依赖项时,依赖的类/模块不应该自动导入依赖项吗?
following the tutorial at
http://platform.netbeans.org/tutorials/nbm-quick-start.html#lookup
"Right-click the "TextFilter" module, choose Properties, and use the "API Versioning" tab so specify that the package containing the interface should be available throughout the application: " (org.demo.textfilter is set to public)
the problem is, this public package is not automatically imported by another class in another module with dependency on the TextFilter module. Whenever the dependencies are added, shouldn't the dependent classes/modules automatically import the dependencies ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题有点难以解释,所以我会告诉你我认为你在问什么,然后提供答案......
我假设你有几个 netbeans 模块项目:TextFilter 和 MyModule。
最初,MyModule 依赖于 TextFilter。
还有第三个模块,我们称之为 Filter...,它有一个公共的导出类 org.filter.BaseClass。
您已使 TextFilter 依赖于 Filter,因此您可以在 TextFilter 模块中使用 org.filter.BaseClass。
您现在尝试在 MyModule 中使用 org.filter.BaseClass 但不起作用。
模块依赖定义了类的可见性。这种可见性不跨越模块。
如果你希望MyModule能够使用org.filter.BaseClass,你需要显式定义模块Filter和MyModule之间的依赖关系。
Your question is a bit hard to interpret, so I will tell you what I think you are asking and then provide an answer....
I assume that you have a couple netbeans module projects: TextFilter and MyModule.
Initially, MyModule depends on TextFilter.
There is a third module, let's call it Filter... that has a public, exported class org.filter.BaseClass.
You have made TextFilter dependent on Filter, so you can use the org.filter.BaseClass in the TextFilter module.
You are now attempting to use org.filter.BaseClass in MyModule and that is not working.
Module dependency defines the visibility of classes. That visibility does not span modules.
If you want MyModule to be able to use org.filter.BaseClass, you need to explicitly define the dependency between the module Filter and MyModule.