View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.3-b18-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2004.12.16 at 07:09:42 EST 
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   * &lt;complexType>
18   *   &lt;complexContent>
19   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20   *       &lt;sequence>
21   *         &lt;element ref="{}aspect" maxOccurs="unbounded"/>
22   *       &lt;/sequence>
23   *       &lt;attribute name="debug" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
24   *     &lt;/restriction>
25   *   &lt;/complexContent>
26   * &lt;/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  }