blob: 3e6f01464250005d162c3123f4873d041d34c83b [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.model
import org.eclipse.emf.mwe.core.WorkflowContext
import org.eclipse.emf.mwe.core.issues.Issues
import org.eclipse.emf.mwe.core.monitor.ProgressMonitor
import org.eclipse.sphinx.emf.mwe.dynamic.WorkspaceWorkflow
import org.eclipse.sphinx.emf.mwe.dynamic.components.AbstractModelWorkflowComponent
import static extension org.eclipse.sphinx.examples.workflows.lib.ModelWorkflowExtensions.*
class PrintModelSlotWorkflow extends WorkspaceWorkflow {
new(){
children += new PrintModelSlotWorkflowComponent
}
}
class PrintModelSlotWorkflowComponent extends AbstractModelWorkflowComponent {
override protected invokeInternal(WorkflowContext ctx, ProgressMonitor monitor, Issues issues) {
println("Executing Print Model Slot workflow component")
val modelObjects = ctx.modelSlot
var msg = "Model slot contains: "
val iter = modelObjects.iterator
while (iter.hasNext) {
msg += iter.next.label
if (iter.hasNext) {
msg += ", "
}
}
println(msg)
println("Done!")
}
}