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   * Java content class for SpecificationReference complex type.
14   * <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 421)
15   * <p>
16   * <pre>
17   * &lt;complexType name="SpecificationReference">
18   *   &lt;complexContent>
19   *     &lt;extension base="{http://jdtaus.org/core/model/container}ModelObject">
20   *       &lt;attribute name="identifier" use="required" type="{http://jdtaus.org/core/model/container}Identifier" />
21   *       &lt;attribute name="version" type="{http://jdtaus.org/core/model/container}Version" />
22   *     &lt;/extension>
23   *   &lt;/complexContent>
24   * &lt;/complexType>
25   * </pre>
26   * 
27   */
28  public interface SpecificationReference
29      extends org.jdtaus.mojo.resource.model.ModelObject
30  {
31  
32  
33      /**
34       * Gets the value of the version property.
35       * 
36       * @return
37       *     possible object is
38       *     {@link java.lang.String}
39       */
40      java.lang.String getVersion();
41  
42      /**
43       * Sets the value of the version property.
44       * 
45       * @param value
46       *     allowed object is
47       *     {@link java.lang.String}
48       */
49      void setVersion(java.lang.String value);
50  
51      /**
52       * Gets the value of the identifier property.
53       * 
54       * @return
55       *     possible object is
56       *     {@link java.lang.String}
57       */
58      java.lang.String getIdentifier();
59  
60      /**
61       * Sets the value of the identifier property.
62       * 
63       * @param value
64       *     allowed object is
65       *     {@link java.lang.String}
66       */
67      void setIdentifier(java.lang.String value);
68  
69  }