throw new DeploymentException("Could not analyze java bean class", e);
}
PropertyType[] properties = javabean.getPropertyArray();
for (int i = 0; i < properties.length; i++) {
PropertyType property = properties[i];
String propertyName = Introspector.decapitalize(property.getName());
String propertyString = property.getStringValue().trim();
for (int j = 0; j < propertyDescriptors.length; j++) {
PropertyDescriptor propertyDescriptor = propertyDescriptors[j];
if (propertyName.equals(propertyDescriptor.getName())) {
String type = propertyDescriptor.getPropertyType().getName();
PropertyEditor propertyEditor = null;