core/MetacelloCleanNotification.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 19 Sep 2012 01:38:26 +0000
changeset 20 8caf2f257260
parent 16 25ac697dc747
child 22 e1678fee6b03
permissions -rw-r--r--
- fixes for package support

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

Notification subclass:#MetacelloCleanNotification
	instanceVariableNames:'version'
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Exceptions-Notifications'
!


!MetacelloCleanNotification class methodsFor:'exceptioninstantiator'!

signal: aMetacelloVersion

	^ self new signal: aMetacelloVersion
! !

!MetacelloCleanNotification methodsFor:'accessing'!

version
	^ version
!

version: anObject
	version := anObject
! !

!MetacelloCleanNotification methodsFor:'signaling'!

signal: aMetacelloVersion

	self version: aMetacelloVersion.
	^ self signal
! !

!MetacelloCleanNotification class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !