Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
EnvironmentInfo
Last updated at 5:16 am UTC on 29 September 2016
Object subclass: #EnvironmentInfo
	instanceVariableNames: 'name organization packages'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'Environments-Core'



 initializeWithName: aString organization: aSystemOrganizer packages: aPackageOrganizer
 	self initialize.
 	name := aString asSymbol.
 	organization := aSystemOrganizer.
 	packages := aPackageOrganizer.