I'm learning UML right now and ran into the following question.
public class Alpha{
Beta b;
void function(Beta c){
c.doSomething();
}
}
I'm not quite sure on what arrow I should be using. It has an Association because of "Beta b". But it also has a Dependency because it uses Beta c in a function. Beta b and c are completely independent from each other. Can i use both arrows at the same time or is one of them stronger than the other?