Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
SMClient
Last updated at 5:20 am UTC on 19 March 2019
SqueakMap client

 Object subclass: #SMClient
	instanceVariableNames: 'client'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'SMLoader'


The client is a WebClient object.

 client
	^ client ifNil:
		[ client := self class assureWebClient new
			 allowRedirect: false ;
			 yourself ]