MetacelloScriptProjectSpecNotification.st
changeset 1 9e312de5f694
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MetacelloScriptProjectSpecNotification.st	Mon Sep 03 11:13:41 2012 +0000
@@ -0,0 +1,33 @@
+"{ Package: 'stx:goodies/metacello' }"
+
+MetacelloScriptNotification subclass:#MetacelloScriptProjectSpecNotification
+	instanceVariableNames:'projectSpec'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Metacello-Core-Scripts'
+!
+
+
+!MetacelloScriptProjectSpecNotification methodsFor:'accessing'!
+
+projectSpec
+    ^ projectSpec
+!
+
+projectSpec: anObject
+    projectSpec := anObject
+! !
+
+!MetacelloScriptProjectSpecNotification methodsFor:'exception description'!
+
+defaultAction
+    "Result of signal should be the projectSpec to be used to perform the load"
+
+    ^ self projectSpec
+! !
+
+!MetacelloScriptProjectSpecNotification class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id::                                                                                                                        $'
+! !