SVN__CheckoutCommand.st
author fm
Tue, 29 Sep 2009 17:21:23 +0200
changeset 225 a1a123c0d270
parent 92 24cdd7ff423f
child 312 bcb7a37fc77d
permissions -rw-r--r--
changed: #version_SVN

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

"{ NameSpace: SVN }"

UpdateLikeCommand subclass:#CheckoutCommand
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SVN-Private-Commands'
!


!CheckoutCommand methodsFor:'executing - private'!

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

    ^'checkout'

    "Created: / 15-03-2008 / 23:48:44 / janfrog"
!

svnCmdArgumentsOn: arg 
    "raise an error: must be redefined in concrete subclass(es)"
    
    super svnCmdArgumentsOn: arg.
    arg
        nextPut: self url asString;
        nextPut: '.'

    "Created: / 15-03-2008 / 23:48:44 / janfrog"
    "Modified: / 19-03-2008 / 12:44:01 / janfrog"
! !

!CheckoutCommand class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
!

version_SVN
    ^'Id: SVN__CheckoutCommand.st 110 2009-08-19 13:21:10Z vranyj1 '
! !