initial checkin
authorfm
Wed, 23 Sep 2009 18:50:47 +0200
changeset 82 2d096d67ec8c
parent 81 cf2c87b75b0f
child 83 df294ee47be9
initial checkin
SVN__WCActionDeleted.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__WCActionDeleted.st	Wed Sep 23 18:50:47 2009 +0200
@@ -0,0 +1,61 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+WCAction subclass:#WCActionDeleted
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Working copy'
+!
+
+!WCActionDeleted class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!WCActionDeleted class methodsFor:'accessing'!
+
+actionName
+    "Superclass says that I am responsible to implement this method"
+
+    ^'D'
+
+    "Created: / 16-03-2008 / 08:49:10 / janfrog"
+! !
+
+!WCActionDeleted methodsFor:'accessing'!
+
+icon
+
+    ^SVN::IconLibrary delete
+
+    "Created: / 24-06-2009 / 15:07:57 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!WCActionDeleted methodsFor:'processing'!
+
+processEntry: entry using: processor 
+    "
+             Double dispath to a processor, passing an entry"
+    
+    processor processDeletedEntry: entry
+
+    "Modified: / 27-08-2009 / 08:50:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!WCActionDeleted methodsFor:'testing'!
+
+isDeleted
+
+    ^true
+
+    "Created: / 17-08-2009 / 19:47:07 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!WCActionDeleted class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !