SVN__WCActionRestored.st
changeset 51 2046d8af8487
child 157 2c7fd0c2535a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__WCActionRestored.st	Wed Sep 23 18:47:42 2009 +0200
@@ -0,0 +1,43 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+WCAction subclass:#WCActionRestored
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Working copy'
+!
+
+!WCActionRestored class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!WCActionRestored class methodsFor:'accessing'!
+
+actionName
+    "Superclass says that I am responsible to implement this method"
+
+    ^'Restored'
+
+    "Created: / 16-03-2008 / 10:05:52 / janfrog"
+! !
+
+!WCActionRestored methodsFor:'processing'!
+
+processEntry: entry using: processor 
+    "
+             Double dispath to a processor, passing an entry"
+    
+    ^ processor processRestoredEntry: entry
+
+    "Modified: / 27-08-2009 / 08:51:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!WCActionRestored class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !