initial checkin
authorfm
Wed, 23 Sep 2009 18:43:56 +0200
changeset 14 d14a3afdaa20
parent 13 ac44d6d13769
child 15 74aa27a9cc7c
initial checkin
SVN__UpdateCommand.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__UpdateCommand.st	Wed Sep 23 18:43:56 2009 +0200
@@ -0,0 +1,32 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+UpdateLikeCommand subclass:#UpdateCommand
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Private-Commands'
+!
+
+!UpdateCommand class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!UpdateCommand methodsFor:'executing - private'!
+
+svnCmd
+    "raise an error: must be redefined in concrete subclass(es)"
+
+    ^'update'
+
+    "Created: / 16-03-2008 / 10:01:50 / janfrog"
+! !
+
+!UpdateCommand class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !