blob: 7a4ef9e6cc1a9dd6ea74530a4d9ebd32ca6b25ec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 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.eugenia;
import java.util.Arrays;
import java.util.List;
public class GenerateEcoreDelegate extends EugeniaWorkflowDelegate {
protected List<EugeniaActionDelegate> getDelegates() {
return Arrays.asList(
new ClearGmfFileSetAction().setClearGmfFiles(false),
new Emfatic2EcoreDelegate()/*,
new AnnotateEcoreDelegate().setSaveEcore(true)*/);
}
}