View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:15 PM(kohsuke)-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: 2012.10.03 at 04:27:47 AM CEST 
6   //
7   
8   
9   package org.jdtaus.mojo.resource.model;
10  
11  
12  /**
13   * Properties.
14   * 
15   * Java content class for Properties complex type.
16   * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at http://xml.jdtaus.org/1.0.x/jdtaus-core/jdtaus-core-schemas/jdtaus-container-1.1.xsd line 667)
17   * <p>
18   * <pre>
19   * &lt;complexType name="Properties">
20   *   &lt;complexContent>
21   *     &lt;extension base="{http://jdtaus.org/core/model/container}ModelObject">
22   *       &lt;sequence>
23   *         &lt;element ref="{http://jdtaus.org/core/model/container}property" maxOccurs="unbounded" minOccurs="0"/>
24   *       &lt;/sequence>
25   *     &lt;/extension>
26   *   &lt;/complexContent>
27   * &lt;/complexType>
28   * </pre>
29   * 
30   */
31  public interface Properties
32      extends org.jdtaus.mojo.resource.model.ModelObject
33  {
34  
35  
36      /**
37       * Gets the value of the Property property.
38       * 
39       * <p>
40       * This accessor method returns a reference to the live list,
41       * not a snapshot. Therefore any modification you make to the
42       * returned list will be present inside the JAXB object.
43       * This is why there is not a <CODE>set</CODE> method for the Property property.
44       * 
45       * <p>
46       * For example, to add a new item, do as follows:
47       * <pre>
48       *    getProperty().add(newItem);
49       * </pre>
50       * 
51       * 
52       * <p>
53       * Objects of the following type(s) are allowed in the list
54       * {@link org.jdtaus.mojo.resource.model.PropertyElement}
55       * {@link org.jdtaus.mojo.resource.model.Property}
56       * 
57       */
58      java.util.List getProperty();
59  
60  }