Currently, the only association (link) visible on an exported class diagram are the extends/implements relation.
On other tools, association between object from the same project are shown, for exemple :
class A {
private B myBInstance;
private Set<C> myCList;
}
class B {}
class C {}
For this schema, the expected plantuml output would be:

Since it is not possible to map every possible situation, we will just focus on base known Java types to check for a list implementation (ArrayList, List, Set, etc.)
Currently, the only association (link) visible on an exported class diagram are the extends/implements relation.
On other tools, association between object from the same project are shown, for exemple :
For this schema, the expected plantuml output would be:

Since it is not possible to map every possible situation, we will just focus on base known Java types to check for a list implementation (ArrayList, List, Set, etc.)