Comment #4 on issue 868 by anquetil...(a)gmail.com: VerveineJ does not set
the container of a ParameterizedType correctly
http://code.google.com/p/moose-technology/issues/detail?id=868
that would be the easiest solution for me.
Now what do we do with:
public void someMethod() {
ArrayList<String> var1;
ArrayList<Integer> var2;
Currently we ignore the parameter type, so there would be only one
ParameterizedType ...
===//===
Another issue is with the super types:
ArrayList<> inherits from AbstractList<> and implements List<>
But the interface nature of List<> does not appear in the ParameterizedType
List<>