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

Made it possible to configure jobs using "configurable bean" acting as a prototype for actual executed beans

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/descriptors/ConfiguredPropertyDescriptorImpl.java

    r974 r976  
    3131                return result; 
    3232        } 
     33         
     34        @Override 
     35        public boolean isRequired() { 
     36                Configured configured = getAnnotation(Configured.class); 
     37                if (configured == null) { 
     38                        return true; 
     39                } 
     40                return configured.required(); 
     41        } 
    3342} 
Note: See TracChangeset for help on using the changeset viewer.