samples/xmi2ddl.uml2
author Hartmut Goebel <h.goebel@crazy-compilers.com>
Tue, 17 Mar 2020 10:26:38 +0100
changeset 43 fb35b9db9ca1
parent 0 76005e62091d
permissions -rw-r--r--
Move data files into the Python package.

The packe directory is now always searched for include files, after
all other directoreis given in $YML_PATH.
include uml.yml2

UML {
    include uml2sql.yml2

    Root applyPackages;

    Package {
        param "name", "''";
        if "$name=''"  apply "packagedElement", 0 { with "name", "@name"; }
        if "$name!=''" apply "packagedElement", 0 { with "name", "concat($name, '_', @name)"; }
    }

    Class {
        param "name";

        | CREATE TABLE «$name»_«@name» (
        applyAttributes;
        | );
    }

    Attribute | «@name» †type`if "position()!=last()" > ,`
}