stx/MetacelloStXPlatform.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 18 Sep 2012 18:26:49 +0000
changeset 18 d2f3f631bc3c
parent 9 d126d2954bf9
permissions -rw-r--r--
- MetacelloStXVersionSpec class definition added: #version_SVN - MetacelloStXVersionConstructor class definition added: #version_SVN - MetacelloStXPackageSpec class definition added:78 methods - MetacelloStXProject class definition added: #packageSpecClass #versionConstructorClass #versionSpecClass #version_SVN - stx_goodies_metacello_stx changed: #classNamesAndAttributes #extensionMethodNames #preRequisites

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

MetacelloPlatform subclass:#MetacelloStXPlatform
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-St/X-Model'
!


!MetacelloStXPlatform class methodsFor:'initialize-release'!

initialize
    "
    MetacelloStXPlatform initialize
    "

    Current := self new

    "Modified (comment): / 05-09-2012 / 17:41:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!MetacelloStXPlatform class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !

MetacelloStXPlatform initialize!