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 * Maps class-names to specification meta-data.
014 * 
015 * Java content class for Specifications 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 321)
017 * <p>
018 * <pre>
019 * &lt;complexType name="Specifications">
020 *   &lt;complexContent>
021 *     &lt;extension base="{http://jdtaus.org/core/model/container}ModelObject">
022 *       &lt;choice>
023 *         &lt;element ref="{http://jdtaus.org/core/model/container}specification" maxOccurs="unbounded" minOccurs="0"/>
024 *         &lt;element name="reference" type="{http://jdtaus.org/core/model/container}SpecificationReference" maxOccurs="unbounded" minOccurs="0"/>
025 *       &lt;/choice>
026 *     &lt;/extension>
027 *   &lt;/complexContent>
028 * &lt;/complexType>
029 * </pre>
030 * 
031 */
032public interface Specifications
033    extends org.jdtaus.mojo.resource.model.ModelObject
034{
035
036
037    /**
038     * Gets the value of the Specification property.
039     * 
040     * <p>
041     * This accessor method returns a reference to the live list,
042     * not a snapshot. Therefore any modification you make to the
043     * returned list will be present inside the JAXB object.
044     * This is why there is not a <CODE>set</CODE> method for the Specification property.
045     * 
046     * <p>
047     * For example, to add a new item, do as follows:
048     * <pre>
049     *    getSpecification().add(newItem);
050     * </pre>
051     * 
052     * 
053     * <p>
054     * Objects of the following type(s) are allowed in the list
055     * {@link org.jdtaus.mojo.resource.model.Specification}
056     * {@link org.jdtaus.mojo.resource.model.SpecificationElement}
057     * 
058     */
059    java.util.List getSpecification();
060
061    /**
062     * Gets the value of the Reference property.
063     * 
064     * <p>
065     * This accessor method returns a reference to the live list,
066     * not a snapshot. Therefore any modification you make to the
067     * returned list will be present inside the JAXB object.
068     * This is why there is not a <CODE>set</CODE> method for the Reference property.
069     * 
070     * <p>
071     * For example, to add a new item, do as follows:
072     * <pre>
073     *    getReference().add(newItem);
074     * </pre>
075     * 
076     * 
077     * <p>
078     * Objects of the following type(s) are allowed in the list
079     * {@link org.jdtaus.mojo.resource.model.SpecificationReference}
080     * 
081     */
082    java.util.List getReference();
083
084}