AutoloadMetaclass.st
changeset 5271 63e66f4da9fe
parent 4577 c249aeceef0f
child 11112 e451ac8809b3
equal deleted inserted replaced
5270:01a597622eaf 5271:63e66f4da9fe
       
     1 "
       
     2  COPYRIGHT (c) 1999 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
     1 Metaclass subclass:#AutoloadMetaclass
    14 Metaclass subclass:#AutoloadMetaclass
     2 	instanceVariableNames:''
    15 	instanceVariableNames:''
     3 	classVariableNames:''
    16 	classVariableNames:''
     4 	poolDictionaries:''
    17 	poolDictionaries:''
     5 	category:'Kernel-Classes'
    18 	category:'Kernel-Classes'
     6 !
    19 !
     7 
    20 
     8 !AutoloadMetaclass class methodsFor:'documentation'!
    21 !AutoloadMetaclass class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 1999 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 
       
    36 !
     9 
    37 
    10 documentation
    38 documentation
    11 "
    39 "
    12     AutoloadMetaclass catches unhandled class methods, files in 
    40     AutoloadMetaclass catches unhandled class methods, files in 
    13     the corresponding code when first used and resends the catched
    41     the corresponding code when first used and resends the catched
    53 ! !
    81 ! !
    54 
    82 
    55 !AutoloadMetaclass class methodsFor:'documentation'!
    83 !AutoloadMetaclass class methodsFor:'documentation'!
    56 
    84 
    57 version
    85 version
    58     ^ '$Header: /cvs/stx/stx/libbasic/AutoloadMetaclass.st,v 1.2 1999-08-05 13:22:40 cg Exp $'
    86     ^ '$Header: /cvs/stx/stx/libbasic/AutoloadMetaclass.st,v 1.3 2000-02-18 14:30:29 cg Exp $'
    59 ! !
    87 ! !