SVN__WCActionRestored.st
author fm
Tue, 29 Sep 2009 17:17:38 +0200
changeset 157 2c7fd0c2535a
parent 51 2046d8af8487
child 359 a785972cb1fa
permissions -rw-r--r--
changed: #version_SVN

"{ Package: 'cvut:stx/goodies/libsvn' }"

"{ NameSpace: SVN }"

WCAction subclass:#WCActionRestored
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SVN-Working copy'
!


!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$'
!

version_CVS
    ^ '$Header$'
!

version_SVN
    ^'Id: SVN__WCActionRestored.st 113 2009-08-28 11:43:01Z vranyj1 '
! !