How much work would it be to convert the OSX/Cocoa build of of the swarm framework to stick within the guidelines of the Cocoa way of defining BAU methods...
i.e.,
Currently we have: - (id)setFoo:
- (id)getFoo:
Cocoa asks for... - (void)setFoo: - (id)foo;
...it's not a huge deal, but definitely something I'd personally prefer - but I have no idea on how many things it would potentially break - I'm guessing there's no hard coding that way, but that probing will not work - so probing is what would need to be rewritten? Is there more to it than that?