SmalltalkCodeGeneratorTool.st
changeset 18798 2534c610f0d0
parent 18422 e53c5e8ee417
child 18815 ed501fb693fa
equal deleted inserted replaced
18797:b035941a8e4d 18798:2534c610f0d0
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "
     1 "
     4  COPYRIGHT (c) 2002 by eXept Software AG
     2  COPYRIGHT (c) 2002 by eXept Software AG
     5               All Rights Reserved
     3               All Rights Reserved
     6 
     4 
     7  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
  2086             code:= 
  2084             code:= 
  2087 'documentation
  2085 'documentation
  2088 "
  2086 "
  2089 ' , (existingComment ? '    documentation to be added.') , '
  2087 ' , (existingComment ? '    documentation to be added.') , '
  2090 
  2088 
       
  2089     class:
       
  2090         <a short class summary here, describing what instances represent>
       
  2091 
       
  2092     responsibilities:    
       
  2093         <describing what my main role is>
       
  2094 
       
  2095     collaborators:    
       
  2096         <describing with whom and how I talk to>
       
  2097 
       
  2098     API:
       
  2099         <public api and main messages>
       
  2100         
       
  2101     example:
       
  2102         <a one-line examples on how to use - can also be in a separate example method>
       
  2103 
       
  2104     implementation:
       
  2105         <implementation points>
       
  2106 
  2091     [author:]
  2107     [author:]
  2092         ' ", userName 
  2108         ' ", userName 
  2093           , ' (' , emailAddress , ')' "
  2109           , ' (' , emailAddress , ')' "
  2094         , ((UserPreferences current historyManagerSignature)?'') , '
  2110         , ((UserPreferences current historyManagerSignature)?'') , '
  2095 
  2111 
  2110     ].
  2126     ].
  2111 
  2127 
  2112     "Modified: / 24-11-2006 / 15:54:27 / cg"
  2128     "Modified: / 24-11-2006 / 15:54:27 / cg"
  2113     "Modified: / 04-02-2011 / 08:24:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
  2129     "Modified: / 04-02-2011 / 08:24:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
  2114     "Modified: / 23-06-2017 / 15:56:15 / Maren"
  2130     "Modified: / 23-06-2017 / 15:56:15 / Maren"
       
  2131     "Modified: / 04-06-2019 / 11:05:00 / Claus Gittinger"
  2115 !
  2132 !
  2116 
  2133 
  2117 createExamplesMethodFor:aClass
  2134 createExamplesMethodFor:aClass
  2118     "add examples method containing examples template
  2135     "add examples method containing examples template
  2119      but only if not already present."
  2136      but only if not already present."