Hi,
are fame and metanool projects dead? All links I found to them are dead (
http://www.moosetechnology.org/tools/fame ,
http://smallwiki.unibe.ch/fame/
)
I remember there used to be a list of Moose tools on the website, but this
was removed after the redesign, so I am not sure if those projects were
abandoned or just removed from the spotlight (e.g. because you guys are
focused on GT).
And lastly for FAMIX and Smalltalk:
It is my understanding, that FAMIX/Moose is capable of generating (some)
source code, however I don't see how.
Can I do something like this?
~~~~~~~~~~~~~
MooseModel resetMeta.
model := MooseModel new.
model
importFromMSEStream:
'(
(FAMIX.Class (id: 1) (name ''AClass'') (sourceAnchor (ref: 3)))
(FAMIX.Method (id: 2) (name ''aMethod'') (parentType (ref: 1))
(sourceAnchor (ref: 4)))
(FAMIX.FileAnchor (id: 3) (element (ref: 1)) (fileName ''afile''))
(FAMIX.FileAnchor (id: 4) (element (ref: 2)) (fileName ''afile'')
(startLine 3) (endLine 30))
)' readStream.
MooseModel generateClassesFrom: model.
~~~~~~~~~~~~~~~
Thanks,
Peter