Interface Probe
- All Known Implementing Classes:
BaseProbe, ComplexBeanProbe, DomProbe, GenericProbe
public interface Probe
A Probe is an object that is used to work with beans, DOM objects, or other objects.
-
Method Summary
Modifier and TypeMethodDescriptionGets an Object property from another object.getPropertyTypeForGetter(Object object, String name) Returns the class that the getter will return when reading a property.getPropertyTypeForSetter(Object object, String name) Returns the class that the setter expects when setting a property.booleanhasReadableProperty(Object object, String propertyName) Checks to see if an object has a readable property by a given name.booleanhasWritableProperty(Object object, String propertyName) Checks to see if an object has a writable property by a given name.voidSets the value of a property on an object.
-
Method Details
-
getObject
-
setObject
-
getPropertyTypeForSetter
-
getPropertyTypeForGetter
-
hasWritableProperty
-
hasReadableProperty
-