Ignore:
Timestamp:
08/14/10 11:12:43 (22 months ago)
Author:
kasper
Message:

limited possibility of @Configured and @Provided to fields in order to make it easy to also get value of properties through PropertyDescriptor?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/lifecycle/AssignConfiguredCallback.java

    r968 r974  
    3030                        Object configuredValue = getValue(property); 
    3131                        if (configuredValue == null) { 
    32                                 property.assignValue(bean, null); 
     32                                property.setValue(bean, null); 
    3333                        } else { 
    3434                                if (property.isArray()) { 
    35                                         property.assignValue(bean, configuredValue); 
     35                                        property.setValue(bean, configuredValue); 
    3636                                } else { 
    3737                                        if (configuredValue.getClass().isArray()) { 
     
    4242                                                } 
    4343                                        } 
    44                                         property.assignValue(bean, configuredValue); 
     44                                        property.setValue(bean, configuredValue); 
    4545                                } 
    4646                        } 
Note: See TracChangeset for help on using the changeset viewer.