* Implements JMeterGUIComponent.modifyTestElement(TestElement)
*/
public void modifyTestElement(TestElement controller) {
configureTestElement(controller);
if (controller instanceof IfController) {
IfController ifController = (IfController) controller;
ifController.setCondition(theCondition.getText());
ifController.setEvaluateAll(evaluateAll.isSelected());
ifController.setUseExpression(useExpression.isSelected());
}
}