initial checkin
authorfm
Wed, 23 Sep 2009 18:49:50 +0200
changeset 72 877b3f3d2fb1
parent 71 0c82db5d040e
child 73 7f6cbb20e649
initial checkin
SVN__CleanupCommand.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__CleanupCommand.st	Wed Sep 23 18:49:50 2009 +0200
@@ -0,0 +1,42 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+WCCommand subclass:#CleanupCommand
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Private-Commands'
+!
+
+!CleanupCommand class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!CleanupCommand methodsFor:'executing'!
+
+execute
+
+
+    ^self svnExecute
+
+    "Created: / 08-11-2008 / 08:14:56 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!CleanupCommand methodsFor:'executing - private'!
+
+svnCmd
+    "raise an error: must be redefined in concrete subclass(es)"
+
+    ^'cleanup'
+
+    "Created: / 08-11-2008 / 08:12:02 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!CleanupCommand class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !