'From Pharo1.0beta of 16 May 2008 [Latest update: #10418] on 21 August 2009 at 4:10:40 pm'! !OBDPAbstract class methodsFor: 'caching-accessing' stamp: 'juan.cortez 8/21/2009 15:31'! reinitAllCache "The cache is used to avoid computing the selector collection every time. Each protocol has its own cache which is a dictionary: - keys are classes - values are collection of selectors for this " self allSubclasses do:[ :e | e reinitCache ]! !