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   * Reference to a text message.
14   * 
15   * Java content class for MessageReference 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 787)
17   * <p>
18   * <pre>
19   * &lt;complexType name="MessageReference">
20   *   &lt;complexContent>
21   *     &lt;extension base="{http://jdtaus.org/core/model/container}ModelObject">
22   *       &lt;attribute name="name" use="required" type="{http://jdtaus.org/core/model/container}Identifier" />
23   *     &lt;/extension>
24   *   &lt;/complexContent>
25   * &lt;/complexType>
26   * </pre>
27   * 
28   */
29  public interface MessageReference
30      extends org.jdtaus.mojo.resource.model.ModelObject
31  {
32  
33  
34      /**
35       * Gets the value of the name property.
36       * 
37       * @return
38       *     possible object is
39       *     {@link java.lang.String}
40       */
41      java.lang.String getName();
42  
43      /**
44       * Sets the value of the name property.
45       * 
46       * @param value
47       *     allowed object is
48       *     {@link java.lang.String}
49       */
50      void setName(java.lang.String value);
51  
52  }