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/beans/valuedist/ValueDistributionAnalyzer.java

    r957 r976  
    1919 
    2020@AnalyzerBean("Value distribution") 
    21 public class ValueDistributionAnalyzer implements RowProcessingAnalyzer<ValueDistributionResult> { 
     21public class ValueDistributionAnalyzer implements 
     22                RowProcessingAnalyzer<ValueDistributionResult> { 
    2223 
    2324        private static final Logger logger = LoggerFactory 
     
    3031        @Inject 
    3132        @Configured("Record unique values") 
    32         boolean _recordUniqueValues; 
     33        boolean _recordUniqueValues = true; 
    3334 
    3435        @Inject 
    35         @Configured("Top n most frequent values") 
     36        @Configured(value = "Top n most frequent values", required = false) 
    3637        Integer _topFrequentValues; 
    3738 
    3839        @Inject 
    39         @Configured("Bottom n most frequent values") 
     40        @Configured(value = "Bottom n most frequent values", required = false) 
    4041        Integer _bottomFrequentValues; 
    4142 
Note: See TracChangeset for help on using the changeset viewer.