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 [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
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 <[hidden email]> wrote: Hi, _______________________________________________ Moose-dev mailing list [hidden email] 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:
_______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Free forum by Nabble | Edit this page |