initial checkin
authorfm
Wed, 23 Sep 2009 18:44:27 +0200
changeset 19 497c07660a35
parent 18 acdb425354a7
child 20 e1d65910a06c
initial checkin
SVN__Entry.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__Entry.st	Wed Sep 23 18:44:27 2009 +0200
@@ -0,0 +1,49 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+Object subclass:#Entry
+	instanceVariableNames:'path kind revision date author'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Core'
+!
+
+!Entry class methodsFor:'documentation'!
+
+version_SVN
+
+    ^'$Id$'
+! !
+
+!Entry methodsFor:'accessing'!
+
+author
+    ^ author
+!
+
+date
+    ^ date
+!
+
+kind
+    ^ kind
+!
+
+path
+    ^ path
+!
+
+path:aString
+    path := aString.
+!
+
+revision
+    ^ revision
+! !
+
+!Entry class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !