1 18 19 package org.apache.jmeter.functions; 20 21 import java.util.Collection ; 22 import java.util.List ; 23 24 import org.apache.jmeter.samplers.SampleResult; 25 import org.apache.jmeter.samplers.Sampler; 26 27 31 public interface Function 32 { 33 41 public String execute(SampleResult previousResult, Sampler currentSampler) 42 throws InvalidVariableException; 43 44 53 public void setParameters(Collection parameters) 54 throws InvalidVariableException; 55 56 60 public String getReferenceKey(); 61 62 74 public List getArgumentDesc(); 75 } 76 | Popular Tags |