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 ImplementationReference 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 565) 15 * <p> 16 * <pre> 17 * <complexType name="ImplementationReference"> 18 * <complexContent> 19 * <extension base="{http://jdtaus.org/core/model/container}SpecificationReference"> 20 * <attribute name="implementationName" type="{http://jdtaus.org/core/model/container}Identifier" /> 21 * </extension> 22 * </complexContent> 23 * </complexType> 24 * </pre> 25 * 26 */ 27 public interface ImplementationReference 28 extends org.jdtaus.mojo.resource.model.SpecificationReference 29 { 30 31 32 /** 33 * Gets the value of the implementationName property. 34 * 35 * @return 36 * possible object is 37 * {@link java.lang.String} 38 */ 39 java.lang.String getImplementationName(); 40 41 /** 42 * Sets the value of the implementationName property. 43 * 44 * @param value 45 * allowed object is 46 * {@link java.lang.String} 47 */ 48 void setImplementationName(java.lang.String value); 49 50 }