Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv24938
Added Files:
createreport.py
Log Message:
get report
--- NEW FILE: createreport.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateReport
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./report.txt")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateReport)
|