1
2
3
4
5
6
7
8
9 package net.sf.jour.config;
10
11
12 /***
13 * Java content class for anonymous complex type.
14 * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/work/java/jour/jour_pg/src/resources/jour.xsd line 15)
15 * <p>
16 * <pre>
17 * <complexType>
18 * <complexContent>
19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 * <sequence>
21 * <element ref="{}aspect" maxOccurs="unbounded"/>
22 * </sequence>
23 * <attribute name="debug" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
24 * </restriction>
25 * </complexContent>
26 * </complexType>
27 * </pre>
28 *
29 */
30 public interface JourType {
31
32
33 /***
34 * Gets the value of the Aspect property.
35 *
36 * <p>
37 * This accessor method returns a reference to the live list,
38 * not a snapshot. Therefore any modification you make to the
39 * returned list will be present inside the JAXB object.
40 * This is why there is not a <CODE>set</CODE> method for the Aspect property.
41 *
42 * <p>
43 * For example, to add a new item, do as follows:
44 * <pre>
45 * getAspect().add(newItem);
46 * </pre>
47 *
48 *
49 * <p>
50 * Objects of the following type(s) are allowed in the list
51 * {@link net.sf.jour.config.Aspect}
52 * {@link net.sf.jour.config.AspectType}
53 *
54 */
55 java.util.List getAspect();
56
57 /***
58 * Gets the value of the debug property.
59 *
60 */
61 boolean isDebug();
62
63 /***
64 * Sets the value of the debug property.
65 *
66 */
67 void setDebug(boolean value);
68
69 }