blob: a143bd510c9cf9130aed5c061815f96befbbd7a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.examples.standalone.eol;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.epsilon.eol.EolModule;
import org.eclipse.epsilon.eol.IEolModule;
import org.eclipse.epsilon.eol.models.IModel;
import org.eclipse.epsilon.examples.standalone.EpsilonStandaloneExample;
/**
* This example demonstrates using the
* Epsilon Object Language, the core language
* of Epsilon, in a stand-alone manner
* @author Dimitrios Kolovos
*/
public class EolStandaloneExample extends EpsilonStandaloneExample {
public static void main(String[] args) throws Exception {
new EolStandaloneExample().execute();
}
@Override
public IEolModule createModule() {
return new EolModule();
}
@Override
public List<IModel> getModels() throws Exception {
List<IModel> models = new ArrayList<IModel>();
models.add(createEmfModel("Model", "models/Tree.xmi",
"models/Tree.ecore", true, true));
return models;
}
@Override
public String getSource() throws Exception {
return "eol/Demo.eol";
}
@Override
public void postProcess() {
}
}