'From Squeak3.6beta of ''4 July 2003'' [latest update: #5352] on 17 July 2003 at 12:25:01 am'! "Change Set: ImportsAccessorFix Date: 17 July 2003 Author: Yoshiki Ohshima Add an accessor to Imports and fix the deprecated explanation so that the return type of new interface is kept same."! !Imports methodsFor: 'images' stamp: 'yo 7/17/2003 00:17'! imports ^ imports ! ! !SystemDictionary methodsFor: 'deprecated' stamp: 'yo 7/17/2003 00:23'! imageImports "Answer the global dictionary of image imports, creating it if necessary. 7/24/96 sw" "Smalltalk viewImageImports" self deprecatedExplanation: 'You should use the following expression Imports default imports to get the dictionary of all imported images'. (self includesKey: #ImageImports) ifFalse: [self at: #ImageImports put: Dictionary new]. ^ self at: #ImageImports! !