Reputation: 379
I would like to know how the following relationship is called in UML and how it is marked on a class diagram ? Is that a constrained dependency relationship, marked by dotted arrow ?
public class A {}
public class B
{
public foo()
{
A a = new A();
}
}
Upvotes: 0
Views: 43