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 * Messages. 014 * 015 * Java content class for Messages 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 741) 017 * <p> 018 * <pre> 019 * <complexType name="Messages"> 020 * <complexContent> 021 * <extension base="{http://jdtaus.org/core/model/container}ModelObject"> 022 * <choice> 023 * <element ref="{http://jdtaus.org/core/model/container}message" maxOccurs="unbounded" minOccurs="0"/> 024 * <element name="reference" type="{http://jdtaus.org/core/model/container}MessageReference" maxOccurs="unbounded" minOccurs="0"/> 025 * </choice> 026 * </extension> 027 * </complexContent> 028 * </complexType> 029 * </pre> 030 * 031 */ 032public interface Messages 033 extends org.jdtaus.mojo.resource.model.ModelObject 034{ 035 036 037 /** 038 * Gets the value of the Message 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 Message property. 045 * 046 * <p> 047 * For example, to add a new item, do as follows: 048 * <pre> 049 * getMessage().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.MessageElement} 056 * {@link org.jdtaus.mojo.resource.model.Message} 057 * 058 */ 059 java.util.List getMessage(); 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.MessageReference} 080 * 081 */ 082 java.util.List getReference(); 083 084}