Package org.apache.jmeter.testelement.property

Examples of org.apache.jmeter.testelement.property.MultiProperty


          if (log.isDebugEnabled()) {
            log.debug("Replacement result: " + val);
          }
        }
      } else if (val instanceof MultiProperty) {
        MultiProperty multiVal = (MultiProperty) val;
        Collection newValues = replaceValues(multiVal.iterator(), transform);
        multiVal.clear();
        Iterator propIter = newValues.iterator();
        while (propIter.hasNext()) {
          multiVal.addProperty((JMeterProperty) propIter.next());
        }
        if (log.isDebugEnabled()) {
          log.debug("Replacement result: " + multiVal);
        }
      } else {
View Full Code Here

TOP

Related Classes of org.apache.jmeter.testelement.property.MultiProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.