Generics in generator template Follow
Hello,
in the generator I want to create an interface root template, which uses generics in method headers. The generated Java code of the method should look something like this:
<C extends SomeJavaClass> void doSomething(C someParameter);
I struggle to get the
<C extends SomeJavaClass>
part into the template. Is there a way to do this? Or should I try to use a different approach?
Thanks in advance.
Please sign in to leave a comment.
Ok... usually you would be able to accomplish this. But sometimes, it is hard to use the editors accordingly:
That's it. Thanks a lot.