Changeset 983 for AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/configuration/jaxb/Configuration.java
- Timestamp:
- 08/28/10 23:54:43 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/configuration/jaxb/Configuration.java
r982 r983 3 3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 4 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2010.08.28 at 05:39:24PM CEST5 // Generated on: 2010.08.28 at 11:24:27 PM CEST 6 6 // 7 7 … … 33 33 * <element name="custom-taskrunner" type="{http://eobjects.org/analyzerbeans/configuration/1.0}customTaskrunnerType"/> 34 34 * </choice> 35 * <element name="classpath-scanner" type="{http://eobjects.org/analyzerbeans/configuration/1.0}classpathScannerType" minOccurs="0"/> 35 36 * </sequence> 36 37 * </restriction> … … 47 48 "multithreadedTaskrunner", 48 49 "singlethreadedTaskrunner", 49 "customTaskrunner" 50 "customTaskrunner", 51 "classpathScanner" 50 52 }) 51 53 @XmlRootElement(name = "configuration") … … 62 64 @XmlElement(name = "custom-taskrunner") 63 65 protected CustomTaskrunnerType customTaskrunner; 66 @XmlElement(name = "classpath-scanner") 67 protected ClasspathScannerType classpathScanner; 64 68 65 69 /** … … 183 187 } 184 188 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 185 213 }
Note: See TracChangeset
for help on using the changeset viewer.
