MCPoolImportDefinition.st
changeset 54 6e528b5a45b5
child 250 7837c19d79a2
equal deleted inserted replaced
53:57ddaf43984e 54:6e528b5a45b5
       
     1 "{ Package: 'stx:goodies/monticello' }"
       
     2 
       
     3 MCVariableDefinition subclass:#MCPoolImportDefinition
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'Monticello-Modeling'
       
     8 !
       
     9 
       
    10 
       
    11 !MCPoolImportDefinition class methodsFor:'as yet unclassified'!
       
    12 
       
    13 type
       
    14 	^ #pool
       
    15 ! !
       
    16 
       
    17 !MCPoolImportDefinition methodsFor:'testing'!
       
    18 
       
    19 isPoolImport
       
    20 	^ true
       
    21 ! !
       
    22 
       
    23 !MCPoolImportDefinition class methodsFor:'documentation'!
       
    24 
       
    25 version
       
    26     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPoolImportDefinition.st,v 1.1 2006-11-22 13:09:46 cg Exp $'
       
    27 ! !