I've used JClass.narrow on JCodeModel to create the necessary generics for types, but I can't figure out how to generate something like this.
private Class<? extends Serializable> dataType;
How does one generate the ? extends part?
Any help would be welcome.
Figured it out. Here is an example of obtaining a JClass reference to Class<? extends Serializable>. Hope it helps someone.
JClass temp = codeModel.ref(Class.class).narrow(codeModel.ref(Serializable.class).wildcard());
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With