AutoloadMetaclass.st
branchjv
changeset 18120 e3a375d5f6a8
parent 18011 deb0c3355881
parent 17125 659c75d64eb1
equal deleted inserted replaced
18119:cb7a12afe736 18120:e3a375d5f6a8
    40     AutoloadMetaclass catches unhandled class methods, files in 
    40     AutoloadMetaclass catches unhandled class methods, files in 
    41     the corresponding code when first used and resends the catched
    41     the corresponding code when first used and resends the catched
    42     message to the now existing class.
    42     message to the now existing class.
    43 
    43 
    44     Autoload installs AutoloadMetaclass as its metaclass in #initialize. 
    44     Autoload installs AutoloadMetaclass as its metaclass in #initialize. 
       
    45 
       
    46     See details of the why and how of autoloading in the Autoload class.
    45 
    47 
    46     [author:]
    48     [author:]
    47         Stefan Vogel
    49         Stefan Vogel
    48 
    50 
    49     [see also:]
    51     [see also:]
    99 ! !
   101 ! !
   100 
   102 
   101 !AutoloadMetaclass class methodsFor:'documentation'!
   103 !AutoloadMetaclass class methodsFor:'documentation'!
   102 
   104 
   103 version
   105 version
   104     ^ '$Header: /cvs/stx/stx/libbasic/AutoloadMetaclass.st,v 1.8 2010-04-03 10:47:04 cg Exp $'
   106     ^ '$Header: /cvs/stx/stx/libbasic/AutoloadMetaclass.st,v 1.9 2014-11-26 09:10:20 cg Exp $'
   105 !
   107 !
   106 
   108 
   107 version_CVS
   109 version_CVS
   108     ^ '$Header: /cvs/stx/stx/libbasic/AutoloadMetaclass.st,v 1.8 2010-04-03 10:47:04 cg Exp $'
   110     ^ '$Header: /cvs/stx/stx/libbasic/AutoloadMetaclass.st,v 1.9 2014-11-26 09:10:20 cg Exp $'
   109 ! !
   111 ! !
       
   112