initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 22 Nov 2006 14:09:46 +0100
changeset 54 6e528b5a45b5
parent 53 57ddaf43984e
child 55 5eac706aec6c
initial checkin
MCPoolImportDefinition.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MCPoolImportDefinition.st	Wed Nov 22 14:09:46 2006 +0100
@@ -0,0 +1,27 @@
+"{ Package: 'stx:goodies/monticello' }"
+
+MCVariableDefinition subclass:#MCPoolImportDefinition
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Monticello-Modeling'
+!
+
+
+!MCPoolImportDefinition class methodsFor:'as yet unclassified'!
+
+type
+	^ #pool
+! !
+
+!MCPoolImportDefinition methodsFor:'testing'!
+
+isPoolImport
+	^ true
+! !
+
+!MCPoolImportDefinition class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPoolImportDefinition.st,v 1.1 2006-11-22 13:09:46 cg Exp $'
+! !