Uses of Class
com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStep

Packages that use WsdlTestStep
com.eviware.soapui.impl.wsdl WSDL 1.1 implementations of soapui model interface 
com.eviware.soapui.impl.wsdl.actions.teststep WsdlTestStep related actions 
com.eviware.soapui.impl.wsdl.panels.support Support classes for panels 
com.eviware.soapui.impl.wsdl.testcase WSDL implementations of TestCase-related interfaces 
com.eviware.soapui.impl.wsdl.teststeps WsdlTestStep implementations 
com.eviware.soapui.impl.wsdl.teststeps.actions WsdlTestStep implementation actions 
com.eviware.soapui.impl.wsdl.teststeps.registry TestStep registry and factories 
com.eviware.soapui.impl.wsdl.teststeps.support   
com.eviware.soapui.support.components Usefull swing components 
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl
 

Methods in com.eviware.soapui.impl.wsdl with parameters of type WsdlTestStep
 void WsdlTestSuite.fireTestStepAdded(WsdlTestStep testStep, int index)
           
 void WsdlTestSuite.fireTestStepMoved(WsdlTestStep testStep, int ix, int offset)
           
 void WsdlTestSuite.fireTestStepRemoved(WsdlTestStep testStep, int ix)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.actions.teststep
 

Constructors in com.eviware.soapui.impl.wsdl.actions.teststep with parameters of type WsdlTestStep
DeleteTestStepAction(WsdlTestStep testStep)
           
RenameTestStepAction(WsdlTestStep testStep)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.panels.support
 

Constructors in com.eviware.soapui.impl.wsdl.panels.support with parameters of type WsdlTestStep
MockTestRunContext(MockTestRunner mockTestRunner, WsdlTestStep testStep)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.testcase
 

Methods in com.eviware.soapui.impl.wsdl.testcase that return WsdlTestStep
 WsdlTestStep WsdlTestCase.addTestStep(java.lang.String type, java.lang.String name)
           
 WsdlTestStep WsdlTestCase.addTestStep(com.eviware.soapui.config.TestStepConfig stepConfig)
           
 WsdlTestStep WsdlTestCase.cloneStep(WsdlTestStep testStep, java.lang.String name)
           
 WsdlTestStep WsdlTestCase.getTestStepAt(int index)
           
 WsdlTestStep WsdlTestCase.getTestStepByName(java.lang.String stepName)
           
 WsdlTestStep WsdlTestCase.insertTestStep(java.lang.String type, java.lang.String name, int index)
           
 WsdlTestStep WsdlTestCase.insertTestStep(com.eviware.soapui.config.TestStepConfig stepConfig, int ix)
           
 

Methods in com.eviware.soapui.impl.wsdl.testcase with parameters of type WsdlTestStep
 WsdlTestStep WsdlTestCase.cloneStep(WsdlTestStep testStep, java.lang.String name)
           
 void WsdlTestCase.removeTestStep(WsdlTestStep testStep)
           
 

Method parameters in com.eviware.soapui.impl.wsdl.testcase with type arguments of type WsdlTestStep
 java.util.List<TestStep> WsdlTestCase.getTestStepsOfType(java.lang.Class<? extends WsdlTestStep> stepType)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.teststeps
 

Subclasses of WsdlTestStep in com.eviware.soapui.impl.wsdl.teststeps
 class TransferResponseValuesTestStep
          WsdlTestStep for transferring values from a WsdlTestRequest response to a WsdlTestRequest request using XPath expressions
 class WsdlDelayTestStep
           
 class WsdlGotoTestStep
           
 class WsdlGroovyScriptTestStep
           
 class WsdlPropertiesTestStep
           
 class WsdlTestRequestStep
          WsdlTestStep that executes a WsdlTestRequest
 

Methods in com.eviware.soapui.impl.wsdl.teststeps that return WsdlTestStep
 WsdlTestStep WsdlTestStep.clone(WsdlTestCase targetTestCase, java.lang.String name)
          Called after cloning for custom behaviour
 WsdlTestStep WsdlTestRequestStep.clone(WsdlTestCase targetTestCase, java.lang.String name)
           
 

Constructors in com.eviware.soapui.impl.wsdl.teststeps with parameters of type WsdlTestStep
WsdlTestStepResult(WsdlTestStep testStep)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.teststeps.actions
 

Constructors in com.eviware.soapui.impl.wsdl.teststeps.actions with parameters of type WsdlTestStep
CloneTestStepAction(WsdlTestStep testStep, java.lang.String typeName)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.teststeps.registry
 

Methods in com.eviware.soapui.impl.wsdl.teststeps.registry that return WsdlTestStep
abstract  WsdlTestStep WsdlTestStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 WsdlTestStep WsdlTestRequestStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 WsdlTestStep TransferValuesStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 WsdlTestStep PropertiesStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 WsdlTestStep GroovyScriptStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 WsdlTestStep GotoStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 WsdlTestStep DelayStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config)
           
 

Uses of WsdlTestStep in com.eviware.soapui.impl.wsdl.teststeps.support
 

Constructors in com.eviware.soapui.impl.wsdl.teststeps.support with parameters of type WsdlTestStep
WsdlMessageExchangeStepResult(WsdlTestStep step)
           
 

Uses of WsdlTestStep in com.eviware.soapui.support.components
 

Methods in com.eviware.soapui.support.components that return WsdlTestStep
 WsdlTestStep TestStepComboBoxModel.getSelectedStep()
           
 WsdlTestStep TestStepPropertyComboBoxModel.getTestStep()
           
 

Methods in com.eviware.soapui.support.components with parameters of type WsdlTestStep
 void TestStepPropertyComboBoxModel.setTestStep(WsdlTestStep testStep)
           
 

Constructors in com.eviware.soapui.support.components with parameters of type WsdlTestStep
TestStepPropertyComboBoxModel(WsdlTestStep testStep)
           
 



Copyright © 2005-2007 eviware.com. All Rights Reserved.