コード例 #1
0
 /**
  * Modifies a given TestElement to mirror the data in the gui components.
  *
  * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
  */
 public void modifyTestElement(TestElement el) {
   super.configureTestElement(el);
   if (el instanceof XPathAssertion) {
     XPathAssertion assertion = (XPathAssertion) el;
     assertion.setNegated(xpath.isNegated());
     assertion.setXPathString(xpath.getXPath());
     xml.modifyTestElement(assertion);
   }
 }