MetacelloAllowConflictingProjectUpgrade.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 03 Sep 2012 13:10:51 +0000
changeset 3 504152ada1fc
parent 1 9e312de5f694
permissions -rw-r--r--
fixed stc-compilability

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

MetacelloResolveProjectUpgrade subclass:#MetacelloAllowConflictingProjectUpgrade
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Scripts'
!


!MetacelloAllowConflictingProjectUpgrade methodsFor:'accessing'!

operationString
    ^ 'conflict'
! !

!MetacelloAllowConflictingProjectUpgrade methodsFor:'exception handling'!

defaultAction
    ^ MetacelloConflictingProjectError
        signal:
            'Load Conflict between existing ' , self existingProjectRegistration printString , ' and '
                , self newProjectRegistration printString
! !

!MetacelloAllowConflictingProjectUpgrade methodsFor:'handlers'!

handleResolutionFor: aScriptEngine
    ^ aScriptEngine handleConflict: self
! !

!MetacelloAllowConflictingProjectUpgrade class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !