1 18 19 22 package org.apache.jmeter.engine.util; 23 24 import java.util.Map ; 25 26 29 abstract class AbstractTransformer implements ValueTransformer 30 { 31 32 33 protected CompoundVariable masterFunction; 34 protected Map variables; 35 36 public void setMasterFunction(CompoundVariable variable) 37 { 38 masterFunction = variable; 39 } 40 41 protected CompoundVariable getMasterFunction() 42 { 43 return masterFunction; 44 } 45 46 public Map getVariables() 47 { 48 return variables; 49 } 50 51 public void setVariables(Map map) 52 { 53 variables = map; 54 } 55 } 56 | Popular Tags |