SVN__UpdateCommand.st
author fm
Mon, 19 Oct 2009 14:24:30 +0200
changeset 470 c62f404c6b75
parent 313 639dbb0e8150
child 492 74ff0960961c
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libsvn' }"

"{ NameSpace: SVN }"

nil subclass:#UpdateCommand
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SVN-Private-Commands'
!


!UpdateCommand methodsFor:'executing - private'!

svnCmd
    "raise an error: must be redefined in concrete subclass(es)"

    ^'update'

    "Created: / 16-03-2008 / 10:01:50 / janfrog"
! !

!UpdateCommand class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
!

version_SVN
    ^'§Id: SVN__UpdateCommand.st 70 2009-04-16 12:47:44Z vranyj1 §'
! !