SVN__NodeKindNone.st
changeset 50 b23473f73074
child 161 8f43e99ab539
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__NodeKindNone.st	Wed Sep 23 18:47:36 2009 +0200
@@ -0,0 +1,42 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+NodeKind subclass:#NodeKindNone
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Repository'
+!
+
+!NodeKindNone class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!NodeKindNone methodsFor:'accessing'!
+
+name
+
+    "Answers a human-readable name of enum value"
+
+    ^'none'
+
+    "Modified: / 19-08-2009 / 09:00:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!NodeKindNone methodsFor:'testing'!
+
+isNone
+
+    ^true
+
+    "Created: / 18-08-2009 / 12:11:47 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!NodeKindNone class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !