Hi!
The Classes are of the same name but their location in different directories indicate a difference in package names. If they don't have a package specification, you can do so by a package statement at the beginning of each file.
So, you can always load them in the same VM as:
Class.forName("com.ibm.Cla
Class.forName("com.microso
Hope it helps!
sghosh
Main Topics
Browse All Topics





by: vraghavPosted on 2001-03-16 at 12:08:29ID: 5935891
Hi there,
One thing u need to take care is that if you are using both the classes in another class, you should refer it with fully qualified name(ie, including package name).
for eg. u have ClassA.
packageA.packageB.ClassA and packageC.packageD.ClassA
I do not see any problem other than this.
Hope this helps.
vraghav