Class TestElementProperty
java.lang.Object
org.apache.jmeter.testelement.property.AbstractProperty
org.apache.jmeter.testelement.property.MultiProperty
org.apache.jmeter.testelement.property.TestElementProperty
- All Implemented Interfaces:
Serializable
,Cloneable
,Comparable<JMeterProperty>
,Iterable<JMeterProperty>
,JMeterProperty
- See Also:
-
Field Summary
Fields inherited from class org.apache.jmeter.testelement.property.AbstractProperty
log
-
Constructor Summary
ConstructorDescriptionTestElementProperty
(String name, org.apache.jmeter.testelement.TestElement value) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addProperty
(JMeterProperty prop) Add a property to the collection.void
clear()
Clear away all values in the property.clone()
boolean
Determines if two test elements are equal.org.apache.jmeter.testelement.TestElement
int
hashCode()
iterator()
Get the property iterator to iterate through the sub-values of this JMeterProperty.void
mergeIn
(JMeterProperty prop) Take the given property object and merge it's value with the current property object.void
recoverRunningVersion
(org.apache.jmeter.testelement.TestElement owner) Tell the property to revert to the state at the time setRunningVersion(true) was called.void
setElement
(org.apache.jmeter.testelement.TestElement el) void
void
setRunningVersion
(boolean runningVersion) Make the property a running version or turn it off as the running version.Methods inherited from class org.apache.jmeter.testelement.property.MultiProperty
recoverRunningVersionOfSubElements
Methods inherited from class org.apache.jmeter.testelement.property.AbstractProperty
compareTo, convertObject, createProperty, getBlankProperty, getBlankProperty, getBooleanValue, getDoubleValue, getFloatValue, getIntValue, getIterator, getLongValue, getName, getPropertyType, isEqualType, isRunningVersion, makeProperty, normalizeList, normalizeMap, setName, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
TestElementProperty
-
TestElementProperty
public TestElementProperty()
-
-
Method Details
-
equals
Determines if two test elements are equal.- Overrides:
equals
in classAbstractProperty
- Returns:
- true if the value is not null and equals the other Objects value; false otherwise (even if both values are null)
-
hashCode
public int hashCode()Description copied from class:AbstractProperty
- Overrides:
hashCode
in classAbstractProperty
-
getStringValue
-
setObjectValue
-
getObjectValue
-
getElement
public org.apache.jmeter.testelement.TestElement getElement() -
setElement
public void setElement(org.apache.jmeter.testelement.TestElement el) -
clone
- Specified by:
clone
in interfaceJMeterProperty
- Overrides:
clone
in classAbstractProperty
-
mergeIn
Take the given property object and merge it's value with the current property object. For most property types, this will simply be ignored. But for collection properties and test element properties, more complex behavior is required.- Specified by:
mergeIn
in interfaceJMeterProperty
- Overrides:
mergeIn
in classMultiProperty
- Parameters:
prop
- the property object to merge into this property
-
recoverRunningVersion
public void recoverRunningVersion(org.apache.jmeter.testelement.TestElement owner) Tell the property to revert to the state at the time setRunningVersion(true) was called.- Parameters:
owner
- the owning element
-
setRunningVersion
public void setRunningVersion(boolean runningVersion) Make the property a running version or turn it off as the running version. A property that is made a running version will preserve the current state in such a way that it is retrievable by a future call to 'recoverRunningVersion()'. Additionally, a property that is a running version will resolve all functions prior to returning it's property value. A non-running version property will return functions as their uncompiled string representation.- Specified by:
setRunningVersion
in interfaceJMeterProperty
- Overrides:
setRunningVersion
in classMultiProperty
- Parameters:
runningVersion
- flag whether this property is a running version
-
addProperty
Add a property to the collection.- Specified by:
addProperty
in classMultiProperty
- Parameters:
prop
- theJMeterProperty
to add
-
clear
public void clear()Clear away all values in the property.- Specified by:
clear
in classMultiProperty
-
iterator
Get the property iterator to iterate through the sub-values of this JMeterProperty.- Specified by:
iterator
in interfaceIterable<JMeterProperty>
- Specified by:
iterator
in classMultiProperty
- Returns:
- an iterator for the sub-values of this property
-