ClassDescription.st
changeset 12885 9f9a00e44844
parent 12884 88f0b864426e
child 13217 20f82be62d16
equal deleted inserted replaced
12884:88f0b864426e 12885:9f9a00e44844
  1187         "/ also notify a change of Smalltalk;
  1187         "/ also notify a change of Smalltalk;
  1188         "/ this allows a dependent of Smalltalk to watch all class
  1188         "/ this allows a dependent of Smalltalk to watch all class
  1189         "/ changes (no need for observing all classes)
  1189         "/ changes (no need for observing all classes)
  1190         "/ - this allows for watchers to find out if its a new method or a method-change
  1190         "/ - this allows for watchers to find out if its a new method or a method-change
  1191         "/
  1191         "/
  1192         Smalltalk changed:#methodInClassRemoved with:(MethodRemoveChangeNotificationParameter changeClass:self changeSelector:aSelector).
  1192         MethodRemoveChangeNotificationParameter notNil ifTrue:[
       
  1193             Smalltalk changed:#methodInClassRemoved with:(MethodRemoveChangeNotificationParameter changeClass:self changeSelector:aSelector).
       
  1194         ]
  1193     ]
  1195     ]
  1194 
  1196 
  1195     "Modified: 8.1.1997 / 23:03:49 / cg"
  1197     "Modified: 8.1.1997 / 23:03:49 / cg"
  1196     "Created: 2.4.1997 / 00:59:29 / stefan"
  1198     "Created: 2.4.1997 / 00:59:29 / stefan"
  1197 ! !
  1199 ! !
  4100 ! !
  4102 ! !
  4101 
  4103 
  4102 !ClassDescription class methodsFor:'documentation'!
  4104 !ClassDescription class methodsFor:'documentation'!
  4103 
  4105 
  4104 version
  4106 version
  4105     ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.213 2010-04-19 16:45:36 cg Exp $'
  4107     ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.214 2010-04-19 16:46:03 cg Exp $'
  4106 !
  4108 !
  4107 
  4109 
  4108 version_CVS
  4110 version_CVS
  4109     ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.213 2010-04-19 16:45:36 cg Exp $'
  4111     ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.214 2010-04-19 16:46:03 cg Exp $'
  4110 ! !
  4112 ! !
  4111 
  4113 
  4112 ClassDescription initialize!
  4114 ClassDescription initialize!
  4113 ClassDescription::MethodRedefinitionNotification initialize!
  4115 ClassDescription::MethodRedefinitionNotification initialize!
  4114 ClassDescription::ClassRedefinitionNotification initialize!
  4116 ClassDescription::ClassRedefinitionNotification initialize!