blob: 982303167a89a811763e66de2cff729906229a39 [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
* itemis - [506671] Add support for specifying and injecting user-defined arguments for workflows through workflow launch configurations
*
* </copyright>
*/
package org.eclipse.sphinx.examples.workflows.empty
import org.eclipse.sphinx.emf.mwe.dynamic.WorkspaceWorkflow
class EmptyWorkflow extends WorkspaceWorkflow {
new() {
}
override preInvoke() {
System.out.println("Running empty workflow")
super.preInvoke()
}
}