core/MetacelloClearStackCacheNotification.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 18 Sep 2012 18:24:44 +0000
changeset 16 25ac697dc747
parent 14 f01fe37493e9
child 22 e1678fee6b03
permissions -rw-r--r--
- Updated from branch master

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

Notification subclass:#MetacelloClearStackCacheNotification
	instanceVariableNames:'cacheNames'
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Exceptions-Notifications'
!


!MetacelloClearStackCacheNotification methodsFor:'accessing'!

cacheNames
	^ cacheNames
!

cacheNames: anArray
	cacheNames := anArray
! !

!MetacelloClearStackCacheNotification methodsFor:'signaling'!

signal: anArray
	"Signal the occurrence of an exceptional condition with a specified cacheName."

	self cacheNames: anArray.
	^ self signal
! !

!MetacelloClearStackCacheNotification class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !