SVN__AddCommand.st
changeset 38 b9b3325a6b5d
child 189 58eb453d19bf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__AddCommand.st	Wed Sep 23 18:46:23 2009 +0200
@@ -0,0 +1,48 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+WCPathCommand subclass:#AddCommand
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Private-Commands'
+!
+
+!AddCommand class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!AddCommand methodsFor:'executing - private'!
+
+svnCmd
+    "raise an error: must be redefined in concrete subclass(es)"
+
+    ^'add'
+
+    "Created: / 16-03-2008 / 10:10:55 / janfrog"
+!
+
+svnGlobalArgumentsOn: argStream
+
+    "nothing to do"
+
+    "Created: / 28-10-2008 / 08:41:08 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!AddCommand methodsFor:'initialization'!
+
+initialize
+
+    paths := OrderedCollection new
+
+    "Created: / 16-03-2008 / 10:13:21 / janfrog"
+! !
+
+!AddCommand class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !