View Javadoc

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   * Text message.
14   * 
15   * Java content class for Message 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 762)
17   * <p>
18   * <pre>
19   * &lt;complexType name="Message">
20   *   &lt;complexContent>
21   *     &lt;extension base="{http://jdtaus.org/core/model/container}ModelObject">
22   *       &lt;sequence>
23   *         &lt;element ref="{http://jdtaus.org/core/model/container}template" minOccurs="0"/>
24   *         &lt;element ref="{http://jdtaus.org/core/model/container}arguments" minOccurs="0"/>
25   *       &lt;/sequence>
26   *       &lt;attribute name="name" use="required" type="{http://jdtaus.org/core/model/container}Identifier" />
27   *     &lt;/extension>
28   *   &lt;/complexContent>
29   * &lt;/complexType>
30   * </pre>
31   * 
32   */
33  public interface Message
34      extends org.jdtaus.mojo.resource.model.ModelObject
35  {
36  
37  
38      /**
39       * Gets the value of the name property.
40       * 
41       * @return
42       *     possible object is
43       *     {@link java.lang.String}
44       */
45      java.lang.String getName();
46  
47      /**
48       * Sets the value of the name property.
49       * 
50       * @param value
51       *     allowed object is
52       *     {@link java.lang.String}
53       */
54      void setName(java.lang.String value);
55  
56      /**
57       * Gets the value of the arguments property.
58       * 
59       * @return
60       *     possible object is
61       *     {@link org.jdtaus.mojo.resource.model.ArgumentsElement}
62       *     {@link org.jdtaus.mojo.resource.model.Arguments}
63       */
64      org.jdtaus.mojo.resource.model.Arguments getArguments();
65  
66      /**
67       * Sets the value of the arguments property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link org.jdtaus.mojo.resource.model.ArgumentsElement}
72       *     {@link org.jdtaus.mojo.resource.model.Arguments}
73       */
74      void setArguments(org.jdtaus.mojo.resource.model.Arguments value);
75  
76      /**
77       * Gets the value of the template property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link org.jdtaus.mojo.resource.model.Texts}
82       *     {@link org.jdtaus.mojo.resource.model.TemplateElement}
83       */
84      org.jdtaus.mojo.resource.model.Texts getTemplate();
85  
86      /**
87       * Sets the value of the template property.
88       * 
89       * @param value
90       *     allowed object is
91       *     {@link org.jdtaus.mojo.resource.model.Texts}
92       *     {@link org.jdtaus.mojo.resource.model.TemplateElement}
93       */
94      void setTemplate(org.jdtaus.mojo.resource.model.Texts value);
95  
96  }