Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Class variables
Last updated at 12:02 pm UTC on 17 January 2006
Variables are defined in a class definition, a template follows:

Object subclass: #NameOfSubclass
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: ''

Scope

Class variables may be referenced in
  1. instance methods of the defining class
  2. class methods of the defining class
  3. instance methods of any sub-classes of the defining class
  4. class methods of any sub-classes of the defining class

Rules



Notes


Reflection methods