El mié, 17-11-2010 a las 20:12 -0800, Jeff Gray escribió: > Sorry for the noob questions... > > What do you do if you want to import 2 discreet packages into your image and > each contains a class of the same name?
As Squeak/Pharo haven't namespaces, you should modify some of them to other name so that they don't clash. Either rename the class to something different of add a prefix to one of them. This is the reason why many packages start by choosing a prefix (2 or 3 chars) that are used in all the classes of the packages: W* for Seaside Ma* for Magma classes etc. If you have a .st file with the source code of one of them then open it in a good text editor and add a prefix to all the classes. Or load one package in an image, refactor the classes to a new prefix and then load the second package. You can also explore the namespaces implementation that was developed in the last google summer of code. A presentations and a screencast was available. Search the archives for them. Cheers -- Miguel Cobá http://twitter.com/MiguelCobaMtz http://miguel.leugim.com.mx _______________________________________________ Pharo-users mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
