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 * Java content class for SpecificationReference complex type. 014 * <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) 015 * <p> 016 * <pre> 017 * <complexType name="SpecificationReference"> 018 * <complexContent> 019 * <extension base="{http://jdtaus.org/core/model/container}ModelObject"> 020 * <attribute name="identifier" use="required" type="{http://jdtaus.org/core/model/container}Identifier" /> 021 * <attribute name="version" type="{http://jdtaus.org/core/model/container}Version" /> 022 * </extension> 023 * </complexContent> 024 * </complexType> 025 * </pre> 026 * 027 */ 028public interface SpecificationReference 029 extends org.jdtaus.mojo.resource.model.ModelObject 030{ 031 032 033 /** 034 * Gets the value of the version property. 035 * 036 * @return 037 * possible object is 038 * {@link java.lang.String} 039 */ 040 java.lang.String getVersion(); 041 042 /** 043 * Sets the value of the version property. 044 * 045 * @param value 046 * allowed object is 047 * {@link java.lang.String} 048 */ 049 void setVersion(java.lang.String value); 050 051 /** 052 * Gets the value of the identifier property. 053 * 054 * @return 055 * possible object is 056 * {@link java.lang.String} 057 */ 058 java.lang.String getIdentifier(); 059 060 /** 061 * Sets the value of the identifier property. 062 * 063 * @param value 064 * allowed object is 065 * {@link java.lang.String} 066 */ 067 void setIdentifier(java.lang.String value); 068 069}