Interface TestElementWrapper<T>
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
AssertionWrapper<T>,ConfigElementWrapper<T>,ControllerWrapper<T>,PostProcessorWrapper<T>,PreProcessorWrapper<T>,SampleListenerWrapper<T>,SamplerWrapper<T>,TestElementTreeNodeWrapper<T>,ThreadWrapper<T>,TimerWrapper<T>
- All Known Implementing Classes:
AbstractArgumentWrapper,AbstractBasicChildTestElementWrapper,AbstractBasicParentTestElementWrapper,AbstractBasicTestElementWrapper,AbstractConstantTimerWrapper,AbstractJmxIncludeWrapper,AbstractJSONPathAssertionWrapper,AbstractListenerElementWrapper,AbstractParentJmxIncludeWrapper,AbstractSamplerWrapper,AbstractScopedAssertionWrapper,AbstractScopedTestElementWrapper,AbstractTestElementWrapper,AbstractThreadGroupWrapper,AggregateGraphWrapper,AggregateReportWrapper,AnchorModifierWrapper,ArgumentsWrapper,ArgumentWrapper,AssertionJmxIncludeWrapper,AssertionVisualizerWrapper,AuthManagerWrapper,AuthorizationWrapper,BackendListenerWrapper,BoundaryExtractorWrapper,CacheManagerWrapper,ComparisonAssertionVisualizerWrapper,ConfigElementJmxIncludeWrapper,ConfigTestElementWrapper,ConstantThroughputTimerWrapper,ConstantTimerWrapper,ControllerJmxIncludeWrapper,CookieManagerWrapper,CookieWrapper,CounterConfigWrapper,CriticalSectionControllerWrapper,CSVDataSetWrapper,DebugPostProcessorWrapper,DebugSamplerWrapper,DurationAssertionWrapper,ForeachControllerWrapper,GaussianRandomTimerWrapper,GenericControllerWrapper,GraphVisualizerWrapper,HeaderManagerWrapper,HeaderWrapper,HTMLAssertionWrapper,HtmlExtractorWrapper,HTTPArgumentWrapper,HttpDefaultsWrapper,HTTPFileArgWrapper,HTTPSamplerBaseWrapper,HTTPSamplerProxyWrapper,IfControllerWrapper,InterleaveControlWrapper,JMESPathAssertionWrapper,JMESPathExtractorWrapper,JSONPathAssertionWrapper,JSONPostProcessorWrapper,JSR223AssertionWrapper,JSR223ListenerWrapper,JSR223PostProcessorWrapper,JSR223PreProcessorWrapper,JSR223SamplerWrapper,JSR223TestElementParentWrapper,JSR223TestElementWrapper,JSR223TimerWrapper,ListenerJmxIncludeWrapper,LoopControllerWrapper,MD5HexAssertionWrapper,OnceOnlyControllerWrapper,OnErrorTestElementWrapper,PoissonRandomTimerWrapper,PostProcessorJmxIncludeWrapper,PostThreadGroupWrapper,PreciseThroughputTimerWrapper,PreProcessorJmxIncludeWrapper,RandomControllerWrapper,RandomOrderControllerWrapper,RandomTimerWrapper,RandomVariableConfigWrapper,RecordingControllerWrapper,RegexExtractorWrapper,RegExUserParametersWrapper,ResponseAssertionWrapper,ResultActionWrapper,ResultCollectorWrapper,RuntimeControllerWrapper,SamplerJmxIncludeWrapper,SampleTimeoutWrapper,ScriptingTestElementParentWrapper,ScriptingTestElementWrapper,SetupThreadGroupWrapper,SimpleControllerWrapper,SimpleDataWriterWrapper,SizeAssertionWrapper,SummariserWrapper,SummaryReportWrapper,SwitchControllerWrapper,SyncTimerWrapper,TableVisualizerWrapper,TestPlanWrapper,ThreadGroupJmxIncludeWrapper,ThreadGroupWrapper,ThroughputControllerWrapper,TimerJmxIncludeWrapper,TransactionControllerWrapper,UniformRandomTimerWrapper,URLRewritingModifierWrapper,ViewResultsFullVisualizerWrapper,WhileControllerWrapper,XMLAssertionWrapper,XMLSchemaAssertionWrapper,XPath2AssertionWrapper,XPath2ExtractorWrapper,XPathAssertionWrapper,XPathExtractorWrapper
public interface TestElementWrapper<T> extends java.io.SerializableMain TestElementWrapper Interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<TestElementWrapper<?>>getChilds()Get tree children.java.util.Set<java.lang.String>getTags()Get Tags.java.lang.Class<?>getTestClass()Test Class used by Jmeter TestElement.TEST_CLASS.java.lang.StringgetTestClassAsString()Test Class used by Jmeter TestElement.TEST_CLASS @See TestElement.voidinit()Init wrapper before conversion.
-
-
-
Method Detail
-
init
void init()
Init wrapper before conversion.
-
getTestClass
java.lang.Class<?> getTestClass()
Test Class used by Jmeter TestElement.TEST_CLASS. @See TestElement.
-
getTestClassAsString
@JmcMethodAlias("testclass") @JmcAsAttribute java.lang.String getTestClassAsString()
Test Class used by Jmeter TestElement.TEST_CLASS @See TestElement.
-
getChilds
java.util.List<TestElementWrapper<?>> getChilds()
Get tree children.- Returns:
- list of child.
-
getTags
java.util.Set<java.lang.String> getTags()
Get Tags. set of tags to categorize eleemnt, this field are not part of Jmeter and will not be persisted.
-
-