SVN__DeleteCommand.st
changeset 73 7f6cbb20e649
child 164 289ec2b95b3f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__DeleteCommand.st	Wed Sep 23 18:49:55 2009 +0200
@@ -0,0 +1,42 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+WCPathCommand subclass:#DeleteCommand
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Private-Commands'
+!
+
+!DeleteCommand class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!DeleteCommand methodsFor:'executing - private'!
+
+svnCmd
+    "raise an error: must be redefined in concrete subclass(es)"
+
+    ^'delete'
+
+    "Created: / 16-03-2008 / 10:14:04 / janfrog"
+!
+
+svnCmdArgumentsOn:arg 
+    "raise an error: must be redefined in concrete subclass(es)"
+
+    super svnCmdArgumentsOn:arg.
+    arg 
+        nextPut:'--force'
+
+    "Created: / 19-04-2008 / 13:09:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!DeleteCommand class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !