Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
System-FileRegistry
Last updated at 1:19 am UTC on 27 March 2017
System-FileRegistry is a class category for maintaining a list (registry) of file reading services.
 FileServices allRegisteredServices
is implemented as
	
	| col |
	col := OrderedCollection new.
	self registeredFileReaderClasses do: [:each | col addAll: (each services)].
	^ col
And
 FileServices registeredFileReaderClasses
is implemented as
 registeredFileReaderClasses
	FileReaderRegistry ifNil: [FileReaderRegistry := OrderedCollection new].
	^ FileReaderRegistry

Classes



See List of classes which provide file reader services