Hi,
to ease search in the FAMIX meta-model for a non Pharo developer, I would like to export it to a text file. Is that already possible?
Thanks
Hi,
You can use:
printer := FMMSEPrinter new onString. MooseModel meta accept: printer. printer stream contents
or:
printer := FMXMLPrinter new onString. MooseModel meta accept: printer. printer stream contents
Cheers, Doru
On Tue, Apr 14, 2015 at 3:16 PM, Damien Cassou damien.cassou@inria.fr wrote:
Hi,
to ease search in the FAMIX meta-model for a non Pharo developer, I would like to export it to a text file. Is that already possible?
Thanks
-- Damien Cassou http://damiencassou.seasidehosting.st
"Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
I was going to suggest:
str := String new writeStream. MooseModel exportMetamodelTo: str .
which give the same result as 1st one
:-)
nicolas
On 14/04/2015 15:38, Tudor Girba wrote:
Hi,
You can use:
printer := FMMSEPrinter new onString. MooseModel meta accept: printer. printer stream contents
or:
printer := FMXMLPrinter new onString. MooseModel meta accept: printer. printer stream contents
Cheers, Doru
On Tue, Apr 14, 2015 at 3:16 PM, Damien Cassou <damien.cassou@inria.fr mailto:damien.cassou@inria.fr> wrote:
Hi, to ease search in the FAMIX meta-model for a non Pharo developer, I would like to export it to a text file. Is that already possible? Thanks -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch <mailto:Moose-dev@iam.unibe.ch> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com http://www.tudorgirba.com
"Every thing has its own flow"
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev