CodeModel 是否支持从未指定的包导入类?
我想生成一个包含对类的引用的文件,但不知道它实际上来自哪个包。
例如,用户提供
import foo.*
import blah.*
Button("press me")
并且我需要生成
import foo.*;
import blah.*;
public class MyWindow extends Window {
public MyWindow() {
Button button = new Button();
button.setLabel("press me");
}
}
类 Button
可以位于任一包中。 CodeModel 支持这种场景吗? 右侧 singleton.getinstance 所需的 CodeModel 帮助( )分配和用于生成Java源文件的Java API< /a> 为类指定完整的包名称,查看 JavaDoc 并没有帮助。
I want to generate a file containing a reference to a class without knowing which package it actually comes from.
E.g. the user supplies
import foo.*
import blah.*
Button("press me")
and I need to generate
import foo.*;
import blah.*;
public class MyWindow extends Window {
public MyWindow() {
Button button = new Button();
button.setLabel("press me");
}
}
The class Button
can be in either package. Is this sort of scenario supported by CodeModel? The examples at CodeModel help needed for right-hand singleton.getinstance() assignment and A Java API to generate Java source files specify complete package names for classes, and a look at the JavaDoc didn't help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论