SmalltalkCodeGeneratorTool.st
changeset 15515 895b2312db3e
parent 15069 ca54ea5a83f9
child 15566 184cea584be5
child 15708 1b35e4573788
equal deleted inserted replaced
15514:909199fecf0a 15515:895b2312db3e
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 2002 by eXept Software AG
     4  COPYRIGHT (c) 2002 by eXept Software AG
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
     8  be provided or otherwise made available to, or used by, any
    10  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
    11  other person.  No title to or ownership of the software is
    10  hereby transferred.
    12  hereby transferred.
    11 "
    13 "
    12 "{ Package: 'stx:libtool' }"
    14 "{ Package: 'stx:libtool' }"
       
    15 
       
    16 "{ NameSpace: Smalltalk }"
    13 
    17 
    14 CodeGeneratorTool subclass:#SmalltalkCodeGeneratorTool
    18 CodeGeneratorTool subclass:#SmalltalkCodeGeneratorTool
    15 	instanceVariableNames:''
    19 	instanceVariableNames:''
    16 	classVariableNames:''
    20 	classVariableNames:''
    17 	poolDictionaries:''
    21 	poolDictionaries:''
  2415 ' bindWith:pkg.
  2419 ' bindWith:pkg.
  2416     ].
  2420     ].
  2417 
  2421 
  2418     ^
  2422     ^
  2419 'applicationRegistryPath
  2423 'applicationRegistryPath
  2420     "the key under which this application stores its process ID in the registry
  2424     "for windows only: 
       
  2425      the key under which this application stores its process ID in the registry
  2421      as a collection of path-components.
  2426      as a collection of path-components.
  2422      i.e. if #(''foo'' ''bar'' ''baz'') is returned here, the current applications ID will be stored
  2427      i.e. if #(''foo'' ''bar'' ''baz'') is returned here, the current application''s ID will be stored
  2423      in HKEY_CURRENT_USER\Software\foo\bar\baz\CurrentID.
  2428      in HKEY_CURRENT_USER\Software\foo\bar\baz\CurrentID.
  2424      (would also be used as a relative path for a temporary lock file under unix).
  2429      (would also be used as a relative path for a temporary lock file under unix).
  2425      Used to detect if another instance of this application is already running."
  2430      Used to detect if another instance of this application is already running."
  2426 
  2431 
  2427     ^ #(''stx'' ''%1'')
  2432     ^ #(''stx'' ''%1'')
  2737 ! !
  2742 ! !
  2738 
  2743 
  2739 !SmalltalkCodeGeneratorTool class methodsFor:'documentation'!
  2744 !SmalltalkCodeGeneratorTool class methodsFor:'documentation'!
  2740 
  2745 
  2741 version
  2746 version
  2742     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.36 2014-12-22 00:56:56 cg Exp $'
  2747     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.37 2015-03-06 12:37:16 cg Exp $'
  2743 !
  2748 !
  2744 
  2749 
  2745 version_CVS
  2750 version_CVS
  2746     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.36 2014-12-22 00:56:56 cg Exp $'
  2751     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.37 2015-03-06 12:37:16 cg Exp $'
  2747 !
  2752 !
  2748 
  2753 
  2749 version_SVN
  2754 version_SVN
  2750     ^ '$Id: SmalltalkCodeGeneratorTool.st,v 1.36 2014-12-22 00:56:56 cg Exp $'
  2755     ^ '$Id: SmalltalkCodeGeneratorTool.st,v 1.37 2015-03-06 12:37:16 cg Exp $'
  2751 ! !
  2756 ! !
  2752 
  2757