SVN__NodeKindNone.st
changeset 50 b23473f73074
child 161 8f43e99ab539
equal deleted inserted replaced
49:033a7e409639 50:b23473f73074
       
     1 "{ Package: 'cvut:stx/goodies/libsvn' }"
       
     2 
       
     3 "{ NameSpace: SVN }"
       
     4 
       
     5 NodeKind subclass:#NodeKindNone
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'SVN-Repository'
       
    10 !
       
    11 
       
    12 !NodeKindNone class methodsFor:'documentation'!
       
    13 
       
    14 version_SVN
       
    15     ^'$Id$'
       
    16 ! !
       
    17 
       
    18 !NodeKindNone methodsFor:'accessing'!
       
    19 
       
    20 name
       
    21 
       
    22     "Answers a human-readable name of enum value"
       
    23 
       
    24     ^'none'
       
    25 
       
    26     "Modified: / 19-08-2009 / 09:00:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    27 ! !
       
    28 
       
    29 !NodeKindNone methodsFor:'testing'!
       
    30 
       
    31 isNone
       
    32 
       
    33     ^true
       
    34 
       
    35     "Created: / 18-08-2009 / 12:11:47 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    36 ! !
       
    37 
       
    38 !NodeKindNone class methodsFor:'documentation'!
       
    39 
       
    40 version
       
    41     ^ '$Header$'
       
    42 ! !