Package org.jmock.util
Class PropertyUtil
java.lang.Object
org.jmock.util.PropertyUtil
Utility class for accessing properties on JavaBean objects.
See http://java.sun.com/products/javabeans/docs/index.html for
more information on JavaBeans.
- Since:
- 1.1.0
- Author:
- Iain McGinniss
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PropertyDescriptor
getPropertyDescriptor
(String propertyName, Object fromObj) Returns the description of the property with the provided name on the provided object's interface.
-
Constructor Details
-
PropertyUtil
public PropertyUtil()
-
-
Method Details
-
getPropertyDescriptor
public static PropertyDescriptor getPropertyDescriptor(String propertyName, Object fromObj) throws IntrospectionException Returns the description of the property with the provided name on the provided object's interface.- Returns:
- the description of the property, or null if the property does not exist.
- Throws:
IntrospectionException
- if an error occured using the JavaBean Introspector class to query the properties of the provided class.
-