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 * Text message. 014 * 015 * Java content class for Message 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 762) 017 * <p> 018 * <pre> 019 * <complexType name="Message"> 020 * <complexContent> 021 * <extension base="{http://jdtaus.org/core/model/container}ModelObject"> 022 * <sequence> 023 * <element ref="{http://jdtaus.org/core/model/container}template" minOccurs="0"/> 024 * <element ref="{http://jdtaus.org/core/model/container}arguments" minOccurs="0"/> 025 * </sequence> 026 * <attribute name="name" use="required" type="{http://jdtaus.org/core/model/container}Identifier" /> 027 * </extension> 028 * </complexContent> 029 * </complexType> 030 * </pre> 031 * 032 */ 033public interface Message 034 extends org.jdtaus.mojo.resource.model.ModelObject 035{ 036 037 038 /** 039 * Gets the value of the name property. 040 * 041 * @return 042 * possible object is 043 * {@link java.lang.String} 044 */ 045 java.lang.String getName(); 046 047 /** 048 * Sets the value of the name property. 049 * 050 * @param value 051 * allowed object is 052 * {@link java.lang.String} 053 */ 054 void setName(java.lang.String value); 055 056 /** 057 * Gets the value of the arguments property. 058 * 059 * @return 060 * possible object is 061 * {@link org.jdtaus.mojo.resource.model.ArgumentsElement} 062 * {@link org.jdtaus.mojo.resource.model.Arguments} 063 */ 064 org.jdtaus.mojo.resource.model.Arguments getArguments(); 065 066 /** 067 * Sets the value of the arguments property. 068 * 069 * @param value 070 * allowed object is 071 * {@link org.jdtaus.mojo.resource.model.ArgumentsElement} 072 * {@link org.jdtaus.mojo.resource.model.Arguments} 073 */ 074 void setArguments(org.jdtaus.mojo.resource.model.Arguments value); 075 076 /** 077 * Gets the value of the template property. 078 * 079 * @return 080 * possible object is 081 * {@link org.jdtaus.mojo.resource.model.Texts} 082 * {@link org.jdtaus.mojo.resource.model.TemplateElement} 083 */ 084 org.jdtaus.mojo.resource.model.Texts getTemplate(); 085 086 /** 087 * Sets the value of the template property. 088 * 089 * @param value 090 * allowed object is 091 * {@link org.jdtaus.mojo.resource.model.Texts} 092 * {@link org.jdtaus.mojo.resource.model.TemplateElement} 093 */ 094 void setTemplate(org.jdtaus.mojo.resource.model.Texts value); 095 096}