MCRemovalPreambleDefinition.st
author Claus Gittinger <cg@exept.de>
Mon, 14 May 2018 02:21:18 +0200
changeset 1048 582b3a028cbc
parent 723 4488aa79bb60
child 1095 87f223484bc3
permissions -rw-r--r--
#FEATURE by cg class: MCMethodDefinition changed: #postloadOver:

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

MCScriptDefinition subclass:#MCRemovalPreambleDefinition
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Modeling'
!


!MCRemovalPreambleDefinition class methodsFor:'as yet unclassified'!

scriptSelector
	^ #preambleOfRemoval
! !

!MCRemovalPreambleDefinition methodsFor:'comparing'!

sortKey
	^ 'zzz' "force to the end so it gets unloaded early"
! !

!MCRemovalPreambleDefinition methodsFor:'installing'!

unload
	super unload.
	self evaluate
! !

!MCRemovalPreambleDefinition class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRemovalPreambleDefinition.st,v 1.5 2013-01-18 13:02:40 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRemovalPreambleDefinition.st,v 1.5 2013-01-18 13:02:40 cg Exp $'
!

version_SVN
    ^ '§Id: MCRemovalPreambleDefinition.st 5 2010-08-29 07:30:29Z vranyj1 §'
! !