CodeGeneratorTool.st
branchjv
changeset 12431 9f0c59c742d5
parent 12401 4714b9640528
child 13170 c9b815af5777
--- a/CodeGeneratorTool.st	Tue Feb 26 12:38:54 2013 +0000
+++ b/CodeGeneratorTool.st	Wed Feb 27 12:34:59 2013 +0000
@@ -49,14 +49,12 @@
 "
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'instance creation'!
 
 new
     ^ self basicNew initialize.
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'code generation'!
 
 createAccessMethodsFor:aCollectionOfVarNames in:aClass withChange:withChange asValueHolder:asValueHolder readersOnly:readersOnly writersOnly:writersOnly
@@ -227,7 +225,6 @@
     "
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'code generation-basic'!
 
 createAccessMethodsFor:aCollectionOfVarNames in:aClass withChange:withChange asValueHolder:asValueHolder readersOnly:readersOnly writersOnly:writersOnly lazyInitialization:lazyInitialization
@@ -237,7 +234,6 @@
         createAccessMethodsFor:aCollectionOfVarNames in:aClass withChange:withChange asValueHolder:asValueHolder readersOnly:readersOnly writersOnly:writersOnly lazyInitialization:lazyInitialization
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'code generation-individual methods'!
 
 createAcceptVisitorMethod:selector in:aClass
@@ -330,7 +326,6 @@
     "Modified (comment): / 21-08-2012 / 11:55:15 / cg"
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'code generation-menus'!
 
 createActionMethodFor:aSelector in:aClass category:aCategory redefine:redefine
@@ -341,7 +336,6 @@
     self subclassResponsibility
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'compilation'!
 
 compile:theCode forClass:aClass inCategory:cat 
@@ -351,7 +345,6 @@
     ^ self new compile:theCode forClass:aClass inCategory:cat
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'defaults'!
 
 copyrightTemplate
@@ -387,7 +380,6 @@
     CopyrightTemplate := aString.
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'interface specs'!
 
 initialMenuSpecForApplications
@@ -813,7 +805,6 @@
     "Modified: / 07-05-2010 / 14:21:55 / cg"
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'private'!
 
 canUseRefactoringSupport
@@ -828,7 +819,6 @@
     self subclassResponsibility
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'utilities'!
 
 missingRequiredProtocolFor:aClass
@@ -859,7 +849,6 @@
     "Modified: / 08-08-2011 / 18:44:58 / cg"
 ! !
 
-
 !CodeGeneratorTool methodsFor:'bulk changes'!
 
 addChange:aChange
@@ -902,7 +891,6 @@
     ]
 ! !
 
-
 !CodeGeneratorTool methodsFor:'code generation'!
 
 createAccessMethodsFor:aCollectionOfVarNames in:aClass withChange:withChange asValueHolder:asValueHolder readersOnly:readersOnly writersOnly:writersOnly
@@ -1329,7 +1317,6 @@
     self subclassResponsibility
 ! !
 
-
 !CodeGeneratorTool methodsFor:'code generation-basic'!
 
 createAccessMethodsFor:aCollectionOfVarNames in:aClass withChange:withChange asValueHolder:asValueHolder readersOnly:readersOnly writersOnly:writersOnly lazyInitialization:lazyInitialization
@@ -1348,7 +1335,6 @@
     self subclassResponsibility
 ! !
 
-
 !CodeGeneratorTool methodsFor:'code generation-individual methods'!
 
 createAcceptVisitorMethod:selector in:aClass
@@ -1459,7 +1445,6 @@
     self subclassResponsibility
 ! !
 
-
 !CodeGeneratorTool methodsFor:'code templates'!
 
 codeFor_classInitialize
@@ -1605,7 +1590,6 @@
     self subclassResponsibility
 ! !
 
-
 !CodeGeneratorTool methodsFor:'compilation'!
 
 compile:theCode forClass:aClass inCategory:cat 
@@ -1656,7 +1640,6 @@
     "Modified (format): / 21-01-2012 / 10:40:59 / cg"
 ! !
 
-
 !CodeGeneratorTool methodsFor:'initialization'!
 
 confirmChanges
@@ -1680,7 +1663,6 @@
     generateComments := userPreferences generateComments.
 ! !
 
-
 !CodeGeneratorTool methodsFor:'private'!
 
 canUseRefactoringSupport
@@ -1711,7 +1693,6 @@
     ].
 ! !
 
-
 !CodeGeneratorTool class methodsFor:'documentation'!
 
 version
@@ -1722,6 +1703,11 @@
     ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.100 2012-10-15 20:17:19 cg Exp $'
 !
 
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
+!
+
 version_SVN
     ^ '$Id: CodeGeneratorTool.st 8074 2012-11-30 17:23:39Z vranyj1 $'
 ! !