mercurial/HGStatus.st
changeset 210 54a73fa50d40
parent 115 b1ed2d29054b
child 282 fb71143ed353
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 Singleton subclass:#HGStatus
    14 Singleton subclass:#HGStatus
     4 	instanceVariableNames:''
    15 	instanceVariableNames:''
     5 	classVariableNames:''
    16 	classVariableNames:''
    61 	classVariableNames:''
    72 	classVariableNames:''
    62 	poolDictionaries:''
    73 	poolDictionaries:''
    63 	privateIn:HGStatus
    74 	privateIn:HGStatus
    64 !
    75 !
    65 
    76 
       
    77 !HGStatus class methodsFor:'documentation'!
       
    78 
       
    79 copyright
       
    80 "
       
    81  COPYRIGHT (c) 2012-2013 by Jan Vrany
       
    82               All Rights Reserved
       
    83 
       
    84  This software is furnished under a license and may be used
       
    85  only in accordance with the terms of that license and with the
       
    86  inclusion of the above copyright notice.   This software may not
       
    87  be provided or otherwise made available to, or used by, any
       
    88  other person.  No title to or ownership of the software is
       
    89  hereby transferred.
       
    90 "
       
    91 ! !
    66 
    92 
    67 !HGStatus class methodsFor:'instance creation'!
    93 !HGStatus class methodsFor:'instance creation'!
    68 
    94 
    69 forCode: aCharacter
    95 forCode: aCharacter
    70     self allSubclasses do:[:cls|
    96     self allSubclasses do:[:cls|
   383 !
   409 !
   384 
   410 
   385 version_SVN
   411 version_SVN
   386     ^ '§Id::                                                                                                                        §'
   412     ^ '§Id::                                                                                                                        §'
   387 ! !
   413 ! !
       
   414