Hi
I wanted to import a model from a stream
I did the following:
m := SCG.Moose.MooseModel new. loader SCG.Moose.MooseImporter withActiveMetamodel. loader importSTream: NameMatchingTest lanModel readStream.
Now I do not know how I can specify in which model the resulting entities should be added.
When I use an SmalltalkImporter I usually do it that way:
m := SCG.Moose.MooseModel new. PundleImporter new model: m ; addPundleNamed: 'xxx' ; run and m is populated.
So Importer is not following the same pattern or I'm stupid and in both cases this is annoying.
stef