#isExceptionHandler instead of #isSignalOrSignalSet
authorStefan Vogel <sv@exept.de>
Mon, 15 Jul 2002 11:40:30 +0200
changeset 6629 873db9bf2ff8
parent 6628 4d693c525443
child 6630 0f6ecb272b09
#isExceptionHandler instead of #isSignalOrSignalSet
ExceptionHandlerSet.st
--- a/ExceptionHandlerSet.st	Mon Jul 15 11:36:58 2002 +0200
+++ b/ExceptionHandlerSet.st	Mon Jul 15 11:40:30 2002 +0200
@@ -193,9 +193,9 @@
     ^ self
 !
 
-isSignalOrSignalSet
-    "return true, if the receiver is either some kind of signal or a signalSet;
-     true returned here - the method is redefined from Object."
+isExceptionHandler
+    "return true, if the receiver responds to the exception handler protocol,
+     especially to the #accepts: and #handles: messages"
 
     ^ true
 ! !
@@ -301,5 +301,5 @@
 !ExceptionHandlerSet class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExceptionHandlerSet.st,v 1.9 2002-05-02 08:46:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExceptionHandlerSet.st,v 1.10 2002-07-15 09:40:30 stefan Exp $'
 ! !