MetacelloLookupProjectSpecForLoad.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' }"

MetacelloScriptProjectSpecNotification subclass:#MetacelloLookupProjectSpecForLoad
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Scripts'
!


!MetacelloLookupProjectSpecForLoad methodsFor:'exception description'!

defaultAction
    "Result of signal should be the MetacelloProjectSpecForLoad to be used to perform the load. 
	Create a MetacelloProjectSpecForLoad and use the overrideProjectSpec: if you want to supply a different projectSpec"

    ^ MetacelloProjectSpecForLoad new
        projectSpec: self projectSpec;
        yourself
! !

!MetacelloLookupProjectSpecForLoad methodsFor:'handlers'!

handleResolutionFor: aScriptEngine
    ^ aScriptEngine handleLookupProjectSpecForLoad: self
! !

!MetacelloLookupProjectSpecForLoad class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !