Posted By:
D_Patel
Posted On:
Friday, November 15, 2002 10:53 PM
Here, are the functions. class A method f() method g() class B method h() Now, UML for, case 1: A.f() { A.g() ; B.h(); } and case 2: A.f() { A.g(); } where, A.g() { B.h(); } For this two case....wat will be the URL in old version and wat will be in new version. Thank you.
More>>
Here, are the functions.
class A
method f()
method g()
class B
method h()
Now,
UML for,
case 1:
A.f() { A.g() ; B.h(); }
and
case 2:
A.f() { A.g(); }
where, A.g() { B.h(); }
For this two case....wat will be the URL in old version and wat will be in new version. Thank you.
<<Less