I'm using Borland Together Architect 2006.
I'm having 2 classes.
First:
import java.util.ArrayList;
public class Seminarie
{
private ArrayList<Programma> programma;
}
Second:
import java.util.ArrayList;
public class Programma {
private int nr;
private String soort;
}
Normally it should show a relation between the 2 classes. But it doesn't!
When I do private Programma programma in the Seminarie class, the link
is shown. But when i have an List/ArrayList, link is gone !
Any idea how I can fix that ?