mercurial/HGCommand.st
changeset 210 54a73fa50d40
parent 208 e6f70bb277ae
child 213 d5a0f178e2c4
equal deleted inserted replaced
209:1ac6a3ac648a 210:54a73fa50d40
       
     1 "
       
     2  COPYRIGHT (c) 2012-2013 by Jan Vrany
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libscm/mercurial' }"
    12 "{ Package: 'stx:libscm/mercurial' }"
     2 
    13 
     3 Object subclass:#HGCommand
    14 Object subclass:#HGCommand
     4 	instanceVariableNames:'workingDirectory'
    15 	instanceVariableNames:'workingDirectory'
     5 	classVariableNames:'HGExecutable HGVersion Debugging Tracing'
    16 	classVariableNames:'HGExecutable HGVersion Debugging Tracing'
   139 	poolDictionaries:''
   150 	poolDictionaries:''
   140 	privateIn:HGCommand
   151 	privateIn:HGCommand
   141 !
   152 !
   142 
   153 
   143 !HGCommand class methodsFor:'documentation'!
   154 !HGCommand class methodsFor:'documentation'!
       
   155 
       
   156 copyright
       
   157 "
       
   158  COPYRIGHT (c) 2012-2013 by Jan Vrany
       
   159               All Rights Reserved
       
   160 
       
   161  This software is furnished under a license and may be used
       
   162  only in accordance with the terms of that license and with the
       
   163  inclusion of the above copyright notice.   This software may not
       
   164  be provided or otherwise made available to, or used by, any
       
   165  other person.  No title to or ownership of the software is
       
   166  hereby transferred.
       
   167 "
       
   168 !
   144 
   169 
   145 documentation
   170 documentation
   146 "
   171 "
   147     A wrapper for hg command line tool. Individual commands are wrapped in 
   172     A wrapper for hg command line tool. Individual commands are wrapped in 
   148     my private classes. 
   173     my private classes.