moosetechnology / FAMIX2Java

A visitor to export Java Model to Java code
https://modularmoose.org/moose-wiki/Users/famix-java/generate-java-code.html
MIT License
1 stars 1 forks source link

Parameter types are missing in extends printing of a parametric type #5

Open LABSARI opened 1 month ago

LABSARI commented 1 month ago

When printing extends, it prints the name of the class, missing parameter types when it is a parametric class.

class A<U, V>{}
class B extends A<Integer, String>{}

When printing class B, we have the following result:

class B extends A{}
LABSARI commented 1 month ago

It can be the same for implements.