MCPreambleDefinition.st
author Claus Gittinger <cg@exept.de>
Wed, 22 Nov 2006 14:09:56 +0100
changeset 56 929479a43479
child 251 c09f587d03f5
permissions -rw-r--r--
initial checkin

"{ Package: 'stx:goodies/monticello' }"

MCScriptDefinition subclass:#MCPreambleDefinition
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Monticello-Modeling'
!


!MCPreambleDefinition class methodsFor:'as yet unclassified'!

scriptSelector
	^ #preamble
! !

!MCPreambleDefinition methodsFor:'as yet unclassified'!

load
	super load.
	self evaluate
! !

!MCPreambleDefinition class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPreambleDefinition.st,v 1.1 2006-11-22 13:09:56 cg Exp $'
! !