blob: 01e07a273e4845d70f1815f0fd717f750af4d18c [file] [log] [blame]
Zakir Meer80da4952019-02-13 10:26:09 +01001package templates.m2m.sw
2
3import org.eclipse.app4mc.amalthea.model.ISR
4import templates.AbstractAmaltheaInchronTransformer
5
6class ISRTransformer extends AbstractAmaltheaInchronTransformer{
7
8 public def create inchronModelFactory.createProcess createProcess(ISR amltISR ){
9
10 it.name=amltISR.name
11
12 it.isr = true
13 }
14}