MCWriteOnlyRepository.st
author Claus Gittinger <cg@exept.de>
Sun, 08 Feb 2015 04:40:34 +0100
changeset 968 70b2a6241dd2
parent 901 6a1a6e48c0b8
permissions -rw-r--r--
class: MCClassDefinition changed: #asChange (send #classVariableString: instead of #classVariableNames:, send #instanceVariableString: instead of #instanceVariableNames:) oops - wrong setters

"{ Package: 'stx:goodies/monticello' }"

MCRepository subclass:#MCWriteOnlyRepository
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Repositories'
!


!MCWriteOnlyRepository methodsFor:'as yet unclassified'!

versionWithInfo: aVersionInfo ifAbsent: aBlock
	^ aBlock value
! !

!MCWriteOnlyRepository methodsFor:'queries'!

includesVersionNamed: aString
	^ false
! !

!MCWriteOnlyRepository class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriteOnlyRepository.st,v 1.5 2014-02-12 14:53:32 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriteOnlyRepository.st,v 1.5 2014-02-12 14:53:32 cg Exp $'
!

version_SVN
    ^ '$Id: MCWriteOnlyRepository.st,v 1.5 2014-02-12 14:53:32 cg Exp $'
! !