blob: 9e26fe09a8ce132576277c2cd0a4ad4cb9579dde [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2014 itemis and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* itemis - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.examples.workflows.simple.xtend
import org.eclipse.emf.mwe2.runtime.workflow.Workflow
import org.eclipse.sphinx.examples.workflows.simple.java.SimpleJavaWorkflowComponent
class SimpleXtendWorkflow extends Workflow {
new() {
println("Creating simple Xtend-based workflow")
// Add workflow components to be executed
children += new SimpleJavaWorkflowComponent
children += new SimpleXtendWorkflowComponent
}
}