The Javadoc for the getPropertyType method of the PropertyDescriptor class states:
The result may be "null" if this is an indexed property that does not
support non-indexed access.
Indexed properties are those that are backed by an array of values. In addition to the standard JavaBean accessor methods, indexed properties may also have methods to get/set individual elements in the array, by specifying an index. The JavaBean, may therefore, have the indexed getters and setters:
public PropertyElement getPropertyName(int index)
public void setPropertyName(int index, PropertyElement element)
in addition the standard getter and setter for non-indexed access:
public PropertyElement[] getPropertyName()
public void setPropertyName(PropertyElement element[])
Going by the Javadoc description, if you omit the non-indexed accessors, you can obtain a return value of null for the property type of the property descriptor.
So, if you have a JavaBean of the following variety, you could get a null return value:
class ExampleBean
{
ExampleBean()
{
this.elements = new String[10];
}
private String[] elements;
// standard getters and setters for non-indexed access. Comment the lines in the double curly brackets, to have getPropertyType return null.
// {{
public String[] getElements()
{
return elements;
}
public void setElements(String[] elements)
{
this.elements = elements;
}
// }}
// indexed getters and setters
public String getElements(int index) {
return this.elements[index];
}
public void setElements(int index, String[] elements)
{
this.elements[index] = elements;
}
}
Note, while that you can implement the indexed property accessors alone, it is not recommended to do so, as the standard accessors are used to read and write values, if you happen to use the getReadMethod and getWriteMethod methods of the PropertyDescriptor.