CodeGeneratorTool.st
changeset 12877 56aee4c5bb78
parent 11842 70180ac9f3bf
child 13170 c9b815af5777
child 13409 22ce583309d6
equal deleted inserted replaced
12876:a54015e67850 12877:56aee4c5bb78
   246 createAcceptVisitorMethodIn:aClass
   246 createAcceptVisitorMethodIn:aClass
   247     "create an acceptVisitor: method
   247     "create an acceptVisitor: method
   248      (I'm tired of typing)"
   248      (I'm tired of typing)"
   249 
   249 
   250     ^ self new createAcceptVisitorMethodIn:aClass
   250     ^ self new createAcceptVisitorMethodIn:aClass
       
   251 !
       
   252 
       
   253 createAspectMethodFor:anAspectSymbol in:aClass
       
   254     "create an aspect method."
       
   255 
       
   256     ^ self new createAspectMethodFor:anAspectSymbol in:aClass
   251 !
   257 !
   252 
   258 
   253 createCopyrightMethodFor:aClass
   259 createCopyrightMethodFor:aClass
   254     "add copyright method containing your/your companies
   260     "add copyright method containing your/your companies
   255      copyright template but only if not already present.
   261      copyright template but only if not already present.
  1355      (I'm tired of typing)"
  1361      (I'm tired of typing)"
  1356 
  1362 
  1357     self subclassResponsibility
  1363     self subclassResponsibility
  1358 !
  1364 !
  1359 
  1365 
       
  1366 createAspectMethodFor:anAspectSymbol in:aClass
       
  1367     "create an aspect method."
       
  1368 
       
  1369     self subclassResponsibility
       
  1370 !
       
  1371 
  1360 createCopyrightMethodFor:aClass
  1372 createCopyrightMethodFor:aClass
  1361     "add copyright method containing your/your companies
  1373     "add copyright method containing your/your companies
  1362      copyright template but only if not already present.
  1374      copyright template but only if not already present.
  1363      this is only added, if specified in the 
  1375      this is only added, if specified in the 
  1364      COPYRIGHT_TEMPLATE_FILE resources."
  1376      COPYRIGHT_TEMPLATE_FILE resources."
  1700 ! !
  1712 ! !
  1701 
  1713 
  1702 !CodeGeneratorTool class methodsFor:'documentation'!
  1714 !CodeGeneratorTool class methodsFor:'documentation'!
  1703 
  1715 
  1704 version
  1716 version
  1705     ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.100 2012-10-15 20:17:19 cg Exp $'
  1717     ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.101 2013-06-07 12:05:11 cg Exp $'
  1706 !
  1718 !
  1707 
  1719 
  1708 version_CVS
  1720 version_CVS
  1709     ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.100 2012-10-15 20:17:19 cg Exp $'
  1721     ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.101 2013-06-07 12:05:11 cg Exp $'
  1710 ! !
  1722 ! !
       
  1723