blob: 8ae7acecd1976e8888b364cf4f6efaddfcb9d9c1 [file] [log] [blame]
package templates.m2m.utils
import org.eclipse.app4mc.amalthea.model.Counter
class CounterUtils {
static def Integer getPrescalerAsInteger(Counter counter){
return counter.prescaler.intValue
}
static def Integer getOffsetAsInteger(Counter counter){
return counter.offset.intValue
}
}