MCRemovalPreambleDefinition.st
author Claus Gittinger <cg@exept.de>
Tue, 11 Sep 2012 23:28:12 +0200
changeset 674 cd605df75169
parent 355 3bebace75fee
child 723 4488aa79bb60
permissions -rw-r--r--
category change

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

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


!MCRemovalPreambleDefinition class methodsFor:'as yet unclassified'!

scriptSelector
	^ #preambleOfRemoval
! !

!MCRemovalPreambleDefinition methodsFor:'as yet unclassified'!

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

unload
	super unload.
	self evaluate
! !

!MCRemovalPreambleDefinition class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRemovalPreambleDefinition.st,v 1.4 2012-09-11 21:28:12 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRemovalPreambleDefinition.st,v 1.4 2012-09-11 21:28:12 cg Exp $'
!

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