Zakir Meer | 80da495 | 2019-02-13 10:26:09 +0100 | [diff] [blame^] | 1 | package templates.m2m.sw |
2 | |||||
3 | import org.eclipse.app4mc.amalthea.model.ISR | ||||
4 | import templates.AbstractAmaltheaInchronTransformer | ||||
5 | |||||
6 | class 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 | } |