'From Squeak3.4 of 1 March 2003 [latest update: #5170] on 7 April 2003 at 7:50:14 pm'! "Change Set: KCP-0032-browseClsVaria Date: 28 March 2003 Author: stephane ducasse, alexandre bergel, and nathanael schaerli Deprecated ClassDescription>>browseClassVariables and define SystemNavigation>>browseClassVariables:. Note that all the left senders of browseClassVariables are subclasses of StringHolder so they do not have to be modified."! !ClassDescription methodsFor: 'deprecated' stamp: 'sd 3/28/2003 18:38'! browseClassVariables self flag: #deprecated. self error: 'Method Deprecated: Use SystemNavigation>>browseClassVariables: instead'! ! !StringHolder methodsFor: 'message list menu'! browseClassVariables "Browse the class variables of the selected class. 2/5/96 sw" | cls | cls _ self selectedClass. cls ifNotNil: [SystemNavigation new browseClassVariables: cls] ! ! !SystemNavigation methodsFor: 'browse' stamp: 'sd 3/28/2003 18:49'! browseClassVariables: aClass aClass classPool inspectWithLabel: 'Class Variables in ' , aClass name! !