001//
002// 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 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2012.10.03 at 04:27:47 AM CEST 
006//
007
008
009package org.jdtaus.mojo.resource.model;
010
011
012/**
013 * Properties.
014 * 
015 * Java content class for Properties complex type.
016 * <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)
017 * <p>
018 * <pre>
019 * &lt;complexType name="Properties">
020 *   &lt;complexContent>
021 *     &lt;extension base="{http://jdtaus.org/core/model/container}ModelObject">
022 *       &lt;sequence>
023 *         &lt;element ref="{http://jdtaus.org/core/model/container}property" maxOccurs="unbounded" minOccurs="0"/>
024 *       &lt;/sequence>
025 *     &lt;/extension>
026 *   &lt;/complexContent>
027 * &lt;/complexType>
028 * </pre>
029 * 
030 */
031public interface Properties
032    extends org.jdtaus.mojo.resource.model.ModelObject
033{
034
035
036    /**
037     * Gets the value of the Property property.
038     * 
039     * <p>
040     * This accessor method returns a reference to the live list,
041     * not a snapshot. Therefore any modification you make to the
042     * returned list will be present inside the JAXB object.
043     * This is why there is not a <CODE>set</CODE> method for the Property property.
044     * 
045     * <p>
046     * For example, to add a new item, do as follows:
047     * <pre>
048     *    getProperty().add(newItem);
049     * </pre>
050     * 
051     * 
052     * <p>
053     * Objects of the following type(s) are allowed in the list
054     * {@link org.jdtaus.mojo.resource.model.PropertyElement}
055     * {@link org.jdtaus.mojo.resource.model.Property}
056     * 
057     */
058    java.util.List getProperty();
059
060}