On 2012-09-09, at 12:31, GOUBIER Thierry <[email protected]> wrote:
> Hi all, > > I'm looking at the NewClassOrganizer package. Is that part of the system > reimplementation effort ? > > In it, I'm worried by ClassOrganization>>addCategory: aProtocolName before: > aUselessArgument. > > I want to be able to fix the ordering of protocols when I develop (it's more > to my taste, as an old-timer, to have usually initialization / instance > creation on top of the protocol list, and private at the bottom... > Alphabetical ordering of protocols is far less satisfying, and an > implementation which force an internal reordering contrary to my whishes > would be problematic). Ordering of protocols should happen in the Browser not in the model. Protocols are simple dictionary entries, the old implementation simply did not want to use dicts for performance / space reasons. I doubt that we will add explicit ordering to protocols...
