我正在玩JCodeModel并尝试生成一个类;感谢this link我能够想出这个:
public final class CodeModelTest
{
private CodeModelTest()
{
throw new Error("no instantiation is permitted");
}
public static void main(final String... args)
throws JClassAlreadyExistsException, IOException
{
final JCodeModel model = new JCodeModel();
final JDefinedClass c = model._class("foo.bar.Baz");
c._extends(BaseParser.class);
final JMethod method = c.method(JMod.PUBLIC, Rule.class, "someRule");
method.body()._return(JExpr._null());
final CodeWriter cw = new OutputStreamCodeWriter(System.out,
StandardCharsets.UTF_8.displayName());
model.build(cw);
}
}
所以,这很有效。 stdout上生成的代码是:
package foo.bar;
import com.github.fge.grappa.parsers.BaseParser;
import com.github.fge.grappa.rules.Rule;
public class Baz
extends BaseParser
{
public Rule someRule() {
return null;
}
}
到目前为止一切顺利。
现在,问题是我想要extends BaseParser<Object>
而不是BaseParser
......而且我无法弄清楚如何做到这一点尽管谷歌周围有几个小时的谷歌搜索...
我该怎么做?
答案 0 :(得分:0)
您需要在构建器中调用narrow方法:
像
c._extends(BaseParser.class).narrow(yourClassHere);
答案 1 :(得分:0)
试试这个:
JClass type = model.ref(BaseParser.class).narrow(Object.class);
c._extends(type);
希望这有帮助。