'From Squeak3.4 of 1 March 2003 [latest update: #5170] on 28 March 2003 at 7:04:19 pm'! "Change Set: KCP-0034-browseInstVar Date: 28 March 2003 Author: stephane ducasse, alexandre bergel, and nathanael schaerli Deprecated ClassDescription>>browseInstVarDefs and browseInstVarRefs and define SystemNavigation>>browseInstVarDefs: and browseInstVarRefs: . Note that all the left senders of browseInstVarDefs and browseInstVarRefs are subclasses of StringHolder so they do not have to be modified."! !ClassDescription methodsFor: 'deprecated' stamp: 'sd 3/28/2003 18:56'! browseInstVarDefs self flag: #deprecated. self error: 'Method Deprecated: Use SystemNavigation>>browseInstVarRefs: instead'! ! !ClassDescription methodsFor: 'deprecated' stamp: 'sd 3/28/2003 18:54'! browseInstVarRefs self flag: #deprecated. self error: 'Method Deprecated: Use SystemNavigation>>browseInstVarRefs: instead'! ! !StringHolder methodsFor: 'message list menu' stamp: 'sd 3/28/2003 18:57'! browseInstVarRefs "1/26/96 sw: real work moved to class, so it can be shared" | cls | cls _ self selectedClassOrMetaClass. cls ifNotNil: [SystemNavigation browseInstVarRefs: cls]! ! !Lexicon methodsFor: 'new-window queries' stamp: 'sd 3/28/2003 18:57'! browseInstVarRefs "Let the search pertain to the target class regardless of selection" SystemNavigation browseInstVarRefs: targetClass! ! !SystemNavigation methodsFor: 'browse' stamp: 'sd 3/28/2003 18:54'! browseInstVarDefs: aClass "Copied from browseInstVarRefs. Should be consolidated some day. 7/29/96 di 7/30/96 sw: did the consolidation" "Change to use SystemNavigation 27 March 2003 sd" aClass chooseInstVarThenDo: [:aVar | SystemNavigation new browseAllStoresInto: aVar from: aClass]! ! !SystemNavigation methodsFor: 'browse' stamp: 'sd 3/28/2003 18:54'! browseInstVarRefs: aClass "1/16/96 sw: moved here from Browser so that it could be used from a variety of places. 7/30/96 sw: call chooseInstVarThenDo: to get the inst var choice" aClass chooseInstVarThenDo: [:aVar | SystemNavigation new browseAllAccessesTo: aVar from: aClass]! !