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 * Object an implementation depends on. 14 * 15 * Java content class for Dependency 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 618) 17 * <p> 18 * <pre> 19 * <complexType name="Dependency"> 20 * <complexContent> 21 * <extension base="{http://jdtaus.org/core/model/container}ImplementationReference"> 22 * <sequence> 23 * <element ref="{http://jdtaus.org/core/model/container}properties" minOccurs="0"/> 24 * </sequence> 25 * <attribute name="bound" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> 26 * <attribute name="name" use="required" type="{http://jdtaus.org/core/model/container}Identifier" /> 27 * </extension> 28 * </complexContent> 29 * </complexType> 30 * </pre> 31 * 32 */ 33 public interface Dependency 34 extends org.jdtaus.mojo.resource.model.ImplementationReference 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 * Properties to be set with the object. 58 * 59 * @return 60 * possible object is 61 * {@link org.jdtaus.mojo.resource.model.Properties} 62 * {@link org.jdtaus.mojo.resource.model.PropertiesElement} 63 */ 64 org.jdtaus.mojo.resource.model.Properties getProperties(); 65 66 /** 67 * Properties to be set with the object. 68 * 69 * @param value 70 * allowed object is 71 * {@link org.jdtaus.mojo.resource.model.Properties} 72 * {@link org.jdtaus.mojo.resource.model.PropertiesElement} 73 */ 74 void setProperties(org.jdtaus.mojo.resource.model.Properties value); 75 76 /** 77 * Gets the value of the bound property. 78 * 79 */ 80 boolean isBound(); 81 82 /** 83 * Sets the value of the bound property. 84 * 85 */ 86 void setBound(boolean value); 87 88 }