mercurial/HGWorkingCopy.st
changeset 210 54a73fa50d40
parent 178 1ed827252fee
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 HGRepositoryObject subclass:#HGWorkingCopy
    14 HGRepositoryObject subclass:#HGWorkingCopy
     4 	instanceVariableNames:'root mergeState'
    15 	instanceVariableNames:'root mergeState'
     5 	classVariableNames:''
    16 	classVariableNames:''
    12 	classVariableNames:''
    23 	classVariableNames:''
    13 	poolDictionaries:''
    24 	poolDictionaries:''
    14 	privateIn:HGWorkingCopy
    25 	privateIn:HGWorkingCopy
    15 !
    26 !
    16 
    27 
       
    28 !HGWorkingCopy class methodsFor:'documentation'!
       
    29 
       
    30 copyright
       
    31 "
       
    32  COPYRIGHT (c) 2012-2013 by Jan Vrany
       
    33               All Rights Reserved
       
    34 
       
    35  This software is furnished under a license and may be used
       
    36  only in accordance with the terms of that license and with the
       
    37  inclusion of the above copyright notice.   This software may not
       
    38  be provided or otherwise made available to, or used by, any
       
    39  other person.  No title to or ownership of the software is
       
    40  hereby transferred.
       
    41 "
       
    42 ! !
    17 
    43 
    18 !HGWorkingCopy methodsFor:'accessing'!
    44 !HGWorkingCopy methodsFor:'accessing'!
    19 
    45 
    20 branch
    46 branch
    21     "Return currently checked-out branch"
    47     "Return currently checked-out branch"
   311 !
   337 !
   312 
   338 
   313 version_SVN
   339 version_SVN
   314     ^ '§Id::                                                                                                                        §'
   340     ^ '§Id::                                                                                                                        §'
   315 ! !
   341 ! !
       
   342