#REFACTORING by cg jv
authorClaus Gittinger <cg@exept.de>
Sun, 16 Jul 2017 11:49:58 +0200
branchjv
changeset 22909 2669c1bd20a5
parent 22135 9b225469dca3
child 22910 58b0fbe6734b
#REFACTORING by cg class: Method added: #isSubclassResponsibility (grafted from 86723ef64f2dd573fc7c56e00387c8cd47c9736a)
Method.st
--- a/Method.st	Mon Jul 31 20:50:13 2017 +0100
+++ b/Method.st	Sun Jul 16 11:49:58 2017 +0200
@@ -2832,6 +2832,16 @@
     "Modified: / 03-10-2014 / 15:16:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
+isSubclassResponsibility
+    ^ self 
+        sendsAnySelector:#( 
+            #subclassResponsibility #subclassResponsibility: 
+            #implementedBySubclass  "/ ST/V code uses this
+        ).
+
+    "Created: / 16-07-2017 / 11:25:54 / cg"
+!
+
 isSynthetic
     "a syntheric method does not really exist - it is only shown in a browser's list"