All Packages Class Hierarchy This Package Previous Next Index
Class org.ajug.jsl.jester.cases.Property
java.lang.Object
|
+----org.ajug.jsl.jester.cases.Property
- public class Property
- extends Object
Property is a pure data class, aka a datatron. There may be zero
or more properties for each TestContext. This class is immutable.
-
getName()
- A method for getting the name of the current test context property.
-
getValue()
- A method for getting the value of the current property.
-
isInherited()
- A method for determining whether or not the current property is inherited.
getName
public String getName()
- A method for getting the name of the current test context property.
- Returns:
- name The name of the current test context property.
getValue
public Object getValue()
- A method for getting the value of the current property.
- Returns:
- value An object representing the value of the current property.
isInherited
public boolean isInherited()
- A method for determining whether or not the current property is inherited.
- Returns:
- isInherited A boolean indicating that property is inherited.
All Packages Class Hierarchy This Package Previous Next Index