Posted by Leon Gunden on March 19, 2001 at 12:07:44:
If one object uses another object in a method, do we have to represent this in the class diagram as an association? For instance:
bool MyClass::DoSomething(OtherClass& getsused) {/*use "getsused" here*/}
Clearly these classes are working together, but the program doesn't require a full fledged association to be maintained. How is this represented, if at all?