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/descriptors/PropertyDescriptor.java

    r962 r974  
    99        public String getName(); 
    1010 
    11         public void assignValue(Object bean, Object value) 
     11        public void setValue(Object bean, Object value) 
    1212                        throws IllegalArgumentException; 
     13 
     14        public Object getValue(Object bean) throws IllegalArgumentException; 
    1315 
    1416        public Set<Annotation> getAnnotations(); 
    1517 
    1618        public <A extends Annotation> A getAnnotation(Class<A> annotationClass); 
    17          
     19 
    1820        public Class<?> getBaseType(); 
    1921 
     
    2123 
    2224        public Type getTypeArgument(int i) throws IndexOutOfBoundsException; 
    23          
     25 
    2426        public boolean isArray(); 
    2527} 
Note: See TracChangeset for help on using the changeset viewer.