Package us.abstracta.jmeter.javadsl.core
Class BuildTreeContext
- java.lang.Object
-
- us.abstracta.jmeter.javadsl.core.BuildTreeContext
-
public class BuildTreeContext extends Object
Contains information that can be used by elements to share infoEg: adding additional items to test plan when a particular protocol element is added.
- Since:
- 0.17
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceBuildTreeContext.TreeContextEndListener
-
Constructor Summary
Constructors Constructor Description BuildTreeContext()
-
Method Summary
-
-
-
Method Detail
-
getParent
public BuildTreeContext getParent()
-
getTestElement
public DslTestElement getTestElement()
-
getRoot
public BuildTreeContext getRoot()
-
isRoot
public boolean isRoot()
-
setTestStopper
public void setTestStopper(TestStopper testStopper)
-
getTestStopper
public TestStopper getTestStopper()
-
addEndListener
public void addEndListener(BuildTreeContext.TreeContextEndListener endListener)
-
addVisualizer
public void addVisualizer(DslVisualizer visualizer, Supplier<Component> guiBuilder)
-
getVisualizers
public Map<DslVisualizer,Supplier<Component>> getVisualizers()
-
buildChild
public org.apache.jorphan.collections.HashTree buildChild(DslTestElement child, org.apache.jorphan.collections.HashTree parentTree)
-
buildTreeFor
public org.apache.jorphan.collections.HashTree buildTreeFor(DslTestElement element, org.apache.jorphan.collections.HashTree parentTree)
-
buildRemoteExecutionContext
public static BuildTreeContext buildRemoteExecutionContext()
-
-