Changeset 974 for AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/lifecycle/AssignConfiguredCallback.java
- Timestamp:
- 08/14/10 11:12:43 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/lifecycle/AssignConfiguredCallback.java
r968 r974 30 30 Object configuredValue = getValue(property); 31 31 if (configuredValue == null) { 32 property. assignValue(bean, null);32 property.setValue(bean, null); 33 33 } else { 34 34 if (property.isArray()) { 35 property. assignValue(bean, configuredValue);35 property.setValue(bean, configuredValue); 36 36 } else { 37 37 if (configuredValue.getClass().isArray()) { … … 42 42 } 43 43 } 44 property. assignValue(bean, configuredValue);44 property.setValue(bean, configuredValue); 45 45 } 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.
