Hi,
I am using ATl plugin to lunch atl using java class.
Before i was running ATL files by using ATL configuration wizard.
The input i was giving in the configuration were:
After running the output was the correct and the one i wanted.
The problem is that when i use the ATL plugin to lunch the atl files it only requires me as input:
Name of the ATL file and Name of the metamodel.
The main method in the java class generated is something like this:
public static void main(String[] args) {
try {
Model_CreateComponents runner = new Model_CreateComponents();
runner.loadModels("model\\sampleprofile.uml");
runner.doModel_CreateComponents(new NullProgressMonitor());
runner.saveModels("model\\output.uml");
the problem is that i dont know where to specify the samplemodel.uml. Because this should be also as input. Therefore the output.uml i am getting is not the one i am expecting to get.
Does anyone know how can i specify this second file inside the generated java class ?