#REFACTORING by cg jv
authorClaus Gittinger <cg@exept.de>
Sun, 16 Jul 2017 11:49:58 +0200
branchjv
changeset 23104 749efed883b6
parent 23103 1a0d5755718e
child 23105 8c5bdb5af03d
#REFACTORING by cg class: Method added: #isSubclassResponsibility (grafted from 86723ef64f2dd573fc7c56e00387c8cd47c9736a)
Method.st
--- a/Method.st	Tue Apr 24 12:23:14 2018 +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"