Metaclass.st
changeset 1292 89497fff7f87
parent 1266 cef9b3cd49df
child 1392 63bfe7f167e6
equal deleted inserted replaced
1291:74d61fd64c4a 1292:89497fff7f87
    37 "
    37 "
    38     every classes class is a subclass of Metaclass.
    38     every classes class is a subclass of Metaclass.
    39     (i.e. every class is the sole instance of its Metaclass)
    39     (i.e. every class is the sole instance of its Metaclass)
    40     Metaclass provides support for creating new (sub)classes and/or 
    40     Metaclass provides support for creating new (sub)classes and/or 
    41     changing the definition of an already existing class.
    41     changing the definition of an already existing class.
       
    42 
       
    43     [author:]
       
    44         Claus Gittinger
    42 "
    45 "
    43 ! !
    46 ! !
    44 
    47 
    45 !Metaclass class methodsFor:'creating metaclasses'!
    48 !Metaclass class methodsFor:'creating metaclasses'!
    46 
    49 
  1448 ! !
  1451 ! !
  1449 
  1452 
  1450 !Metaclass class methodsFor:'documentation'!
  1453 !Metaclass class methodsFor:'documentation'!
  1451 
  1454 
  1452 version
  1455 version
  1453     ^ '$Header: /cvs/stx/stx/libbasic/Metaclass.st,v 1.52 1996-04-23 14:35:51 cg Exp $'
  1456     ^ '$Header: /cvs/stx/stx/libbasic/Metaclass.st,v 1.53 1996-04-25 16:45:49 cg Exp $'
  1454 ! !
  1457 ! !