class: Notification
authorClaus Gittinger <cg@exept.de>
Fri, 06 Dec 2013 14:20:31 +0100
changeset 15849 e752f846dea6
parent 15848 e839ccbebb14
child 15850 3b51942600ce
class: Notification added: #deprecated
Notification.st
--- a/Notification.st	Thu Dec 05 12:34:23 2013 +0100
+++ b/Notification.st	Fri Dec 06 14:20:31 2013 +0100
@@ -259,7 +259,7 @@
 !
 
 raise
-    "QuerySignals are proceedable by definition,
+    "Notifications are proceedable by definition,
      so they should be raised with #query or #raiseRequest"
 
     ^ self shouldNotImplement
@@ -275,6 +275,14 @@
     "Created: / 25.7.1999 / 23:25:59 / stefan"
 ! !
 
+!Notification class methodsFor:'utilities'!
+
+deprecated
+    "invoked by some open source packages (SOAP and YAXO, for example)"
+
+    self notify:'called deprecated interface'
+! !
+
 !Notification methodsFor:'accessing'!
 
 tag
@@ -348,11 +356,11 @@
 !Notification class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.32 2013-08-22 13:01:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.33 2013-12-06 13:20:31 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.32 2013-08-22 13:01:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.33 2013-12-06 13:20:31 cg Exp $'
 ! !