In stead of:
List<Integer> list = new ArrayList<Integer>;
We can generate:
List<Integer> list = new ArrayList<>;
if we are on Java 7 or higher. I think for this we need to pass whether we are creating a new instance to the ModelIncludeDirective which we can then somehow use it in the Type.ftl, or this can already be done with the ext property?
In stead of:
We can generate:
if we are on Java 7 or higher. I think for this we need to pass whether we are creating a new instance to the
ModelIncludeDirectivewhich we can then somehow use it in theType.ftl, or this can already be done with theextproperty?