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 * List of modules. 14 * 15 * Java content class for Modules 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 212) 17 * <p> 18 * <pre> 19 * <complexType name="Modules"> 20 * <complexContent> 21 * <extension base="{http://jdtaus.org/core/model/container}ModelObject"> 22 * <sequence> 23 * <element ref="{http://jdtaus.org/core/model/container}module" maxOccurs="unbounded" minOccurs="0"/> 24 * </sequence> 25 * </extension> 26 * </complexContent> 27 * </complexType> 28 * </pre> 29 * 30 */ 31 public interface Modules 32 extends org.jdtaus.mojo.resource.model.ModelObject 33 { 34 35 36 /** 37 * Gets the value of the Module 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 Module property. 44 * 45 * <p> 46 * For example, to add a new item, do as follows: 47 * <pre> 48 * getModule().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.Module} 55 * {@link org.jdtaus.mojo.resource.model.ModuleElement} 56 * 57 */ 58 java.util.List getModule(); 59 60 }