core/MetacelloCleanNotification.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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11
d354ac2af7ec Metacello package refactoring - phase 2~
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 10
diff changeset
     1
"{ Package: 'stx:goodies/metacello/core' }"
1
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     2
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     3
Notification subclass:#MetacelloCleanNotification
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     4
	instanceVariableNames:'version'
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     5
	classVariableNames:''
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     6
	poolDictionaries:''
16
25ac697dc747 - Updated from branch master
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14
diff changeset
     7
	category:'Metacello-Core-Exceptions-Notifications'
1
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     8
!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     9
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    10
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    11
!MetacelloCleanNotification class methodsFor:'exceptioninstantiator'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    12
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    13
signal: aMetacelloVersion
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    14
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    15
	^ self new signal: aMetacelloVersion
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    16
! !
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    17
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    18
!MetacelloCleanNotification methodsFor:'accessing'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    19
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    20
version
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    21
	^ version
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    22
!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    23
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    24
version: anObject
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    25
	version := anObject
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    26
! !
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    27
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    28
!MetacelloCleanNotification methodsFor:'signaling'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    29
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    30
signal: aMetacelloVersion
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    31
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    32
	self version: aMetacelloVersion.
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    33
	^ self signal
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    34
! !
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    35
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    36
!MetacelloCleanNotification class methodsFor:'documentation'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    37
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    38
version_SVN
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    39
    ^ '$Id::                                                                                                                        $'
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    40
! !