Ignore:
Timestamp:
08/28/10 23:54:43 (21 months ago)
Author:
kasper
Message:

Ticket #382: Improved testing and examples. Added classpath scanning and more to configuration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/configuration/jaxb/Configuration.java

    r982 r983  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2010.08.28 at 05:39:24 PM CEST  
     5// Generated on: 2010.08.28 at 11:24:27 PM CEST  
    66// 
    77 
     
    3333 *           &lt;element name="custom-taskrunner" type="{http://eobjects.org/analyzerbeans/configuration/1.0}customTaskrunnerType"/> 
    3434 *         &lt;/choice> 
     35 *         &lt;element name="classpath-scanner" type="{http://eobjects.org/analyzerbeans/configuration/1.0}classpathScannerType" minOccurs="0"/> 
    3536 *       &lt;/sequence> 
    3637 *     &lt;/restriction> 
     
    4748    "multithreadedTaskrunner", 
    4849    "singlethreadedTaskrunner", 
    49     "customTaskrunner" 
     50    "customTaskrunner", 
     51    "classpathScanner" 
    5052}) 
    5153@XmlRootElement(name = "configuration") 
     
    6264    @XmlElement(name = "custom-taskrunner") 
    6365    protected CustomTaskrunnerType customTaskrunner; 
     66    @XmlElement(name = "classpath-scanner") 
     67    protected ClasspathScannerType classpathScanner; 
    6468 
    6569    /** 
     
    183187    } 
    184188 
     189    /** 
     190     * Gets the value of the classpathScanner property. 
     191     *  
     192     * @return 
     193     *     possible object is 
     194     *     {@link ClasspathScannerType } 
     195     *      
     196     */ 
     197    public ClasspathScannerType getClasspathScanner() { 
     198        return classpathScanner; 
     199    } 
     200 
     201    /** 
     202     * Sets the value of the classpathScanner property. 
     203     *  
     204     * @param value 
     205     *     allowed object is 
     206     *     {@link ClasspathScannerType } 
     207     *      
     208     */ 
     209    public void setClasspathScanner(ClasspathScannerType value) { 
     210        this.classpathScanner = value; 
     211    } 
     212 
    185213} 
Note: See TracChangeset for help on using the changeset viewer.