MCPreambleDefinition.st
author Claus Gittinger <cg@exept.de>
Tue, 08 May 2018 19:59:39 +0200
changeset 1045 fcd46e7eb37f
parent 721 9b08ef12b716
child 1095 87f223484bc3
permissions -rw-r--r--
#DOCUMENTATION by cg class: MCAddition comment/format in: #intializeWithDefinition:

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

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


!MCPreambleDefinition class methodsFor:'as yet unclassified'!

scriptSelector
	^ #preamble
! !

!MCPreambleDefinition methodsFor:'installing'!

load
	super load.
	self evaluate
! !

!MCPreambleDefinition class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPreambleDefinition.st,v 1.5 2013-01-18 13:02:36 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCPreambleDefinition.st,v 1.5 2013-01-18 13:02:36 cg Exp $'
!

version_SVN
    ^ '§Id: MCPreambleDefinition.st 5 2010-08-29 07:30:29Z vranyj1 §'
! !