Package org.apache.jmeter.testbeans
Class TestBeanHelper
java.lang.Object
org.apache.jmeter.testbeans.TestBeanHelper
This is an experimental class. An attempt to address the complexity of
 writing new JMeter components.
 
TestBean currently extends AbstractTestElement to support backward-compatibility, but the property-value-map may later on be separated from the test beans themselves. To ensure this will be doable with minimum damage, all inherited methods are deprecated.
- 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic booleanisDescriptorIgnored(PropertyDescriptor descriptor) Checks whether the descriptor should be ignored, i.e.static voidprepare(org.apache.jmeter.testelement.TestElement el) Prepare the bean for work by populating the bean's properties from the property value map. 
- 
Field Details
- 
log
protected static final org.slf4j.Logger log 
 - 
 - 
Constructor Details
- 
TestBeanHelper
public TestBeanHelper() 
 - 
 - 
Method Details
- 
prepare
public static void prepare(org.apache.jmeter.testelement.TestElement el) Prepare the bean for work by populating the bean's properties from the property value map.- Parameters:
 el- the TestElement to be prepared
 - 
isDescriptorIgnored
Checks whether the descriptor should be ignored, i.e.- isHidden
 - isExpert and JMeter not using expert mode
 - no read method
 - no write method
 
- Parameters:
 descriptor- thePropertyDescriptorto be checked- Returns:
 trueif the descriptor should be ignored
 
 -