Package org.andromda.ant

Source Code of org.andromda.ant.AndromdaAntRunner

package org.andromda.ant;

import org.andromda.andromdapp.AndroMDApp;

/**
* Execues the AndroMDA application generator from a main method.
*/
public class AndromdaAntRunner
{
    public static void main(String[] args)
    {
        try
        {
            AndroMDApp andromdapp = new AndroMDApp();
            andromdapp.run();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }

}
TOP

Related Classes of org.andromda.ant.AndromdaAntRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.