# HG changeset patch # User Claus Gittinger # Date 1370606711 -7200 # Node ID 56aee4c5bb788c27a3abdd9c0129944c7a6d9ed7 # Parent a54015e678506d2bffa673519160c4e21773b6e3 class: CodeGeneratorTool added: #createAspectMethodFor:in: diff -r a54015e67850 -r 56aee4c5bb78 CodeGeneratorTool.st --- a/CodeGeneratorTool.st Fri Jun 07 12:00:10 2013 +0200 +++ b/CodeGeneratorTool.st Fri Jun 07 14:05:11 2013 +0200 @@ -250,6 +250,12 @@ ^ self new createAcceptVisitorMethodIn:aClass ! +createAspectMethodFor:anAspectSymbol in:aClass + "create an aspect method." + + ^ self new createAspectMethodFor:anAspectSymbol in:aClass +! + createCopyrightMethodFor:aClass "add copyright method containing your/your companies copyright template but only if not already present. @@ -1357,6 +1363,12 @@ self subclassResponsibility ! +createAspectMethodFor:anAspectSymbol in:aClass + "create an aspect method." + + self subclassResponsibility +! + createCopyrightMethodFor:aClass "add copyright method containing your/your companies copyright template but only if not already present. @@ -1702,9 +1714,10 @@ !CodeGeneratorTool class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.100 2012-10-15 20:17:19 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.101 2013-06-07 12:05:11 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.100 2012-10-15 20:17:19 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.101 2013-06-07 12:05:11 cg Exp $' ! ! +