CustomCodeGenerator.st
changeset 506 b611cc119554
parent 504 3525d97ae194
child 512 a527e7f19b30
--- a/CustomCodeGenerator.st	Thu Dec 19 21:15:27 2013 +0100
+++ b/CustomCodeGenerator.st	Sun Jan 26 23:47:27 2014 +0000
@@ -8,16 +8,6 @@
 !
 
 
-!CustomCodeGenerator class methodsFor:'initialization'!
-
-initialize
-    "Invoked at system start or when the class is dynamically loaded."
-
-    "/ please change as required (and remove this comment)
-
-
-! !
-
 !CustomCodeGenerator class methodsFor:'instance creation'!
 
 new
@@ -26,21 +16,12 @@
     ^ self basicNew initialize.
 ! !
 
-!CustomCodeGenerator methodsFor:'code generation interface'!
-
-canGenerate: context
-
-    self subclassResponsibility.
+!CustomCodeGenerator class methodsFor:'testing'!
 
-    "Created: / 08-04-2013 / 20:22:19 / user"
-    "Modified (format): / 19-12-2013 / 13:41:19 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
-!
+isAbstract
+    ^ self == CustomCodeGenerator
 
-generate: context
-
-    self subclassResponsibility.
-
-    "Created: / 19-12-2013 / 13:41:31 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
+    "Created: / 26-01-2014 / 21:38:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !CustomCodeGenerator class methodsFor:'documentation'!
@@ -50,5 +31,3 @@
     ^ '$Changeset: <not expanded> $'
 ! !
 
-
-CustomCodeGenerator initialize!