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 * Object an implementation depends on. 014 * 015 * Java content class for Dependency complex type. 016 * <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) 017 * <p> 018 * <pre> 019 * <complexType name="Dependency"> 020 * <complexContent> 021 * <extension base="{http://jdtaus.org/core/model/container}ImplementationReference"> 022 * <sequence> 023 * <element ref="{http://jdtaus.org/core/model/container}properties" minOccurs="0"/> 024 * </sequence> 025 * <attribute name="bound" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> 026 * <attribute name="name" use="required" type="{http://jdtaus.org/core/model/container}Identifier" /> 027 * </extension> 028 * </complexContent> 029 * </complexType> 030 * </pre> 031 * 032 */ 033public interface Dependency 034 extends org.jdtaus.mojo.resource.model.ImplementationReference 035{ 036 037 038 /** 039 * Gets the value of the name property. 040 * 041 * @return 042 * possible object is 043 * {@link java.lang.String} 044 */ 045 java.lang.String getName(); 046 047 /** 048 * Sets the value of the name property. 049 * 050 * @param value 051 * allowed object is 052 * {@link java.lang.String} 053 */ 054 void setName(java.lang.String value); 055 056 /** 057 * Properties to be set with the object. 058 * 059 * @return 060 * possible object is 061 * {@link org.jdtaus.mojo.resource.model.Properties} 062 * {@link org.jdtaus.mojo.resource.model.PropertiesElement} 063 */ 064 org.jdtaus.mojo.resource.model.Properties getProperties(); 065 066 /** 067 * Properties to be set with the object. 068 * 069 * @param value 070 * allowed object is 071 * {@link org.jdtaus.mojo.resource.model.Properties} 072 * {@link org.jdtaus.mojo.resource.model.PropertiesElement} 073 */ 074 void setProperties(org.jdtaus.mojo.resource.model.Properties value); 075 076 /** 077 * Gets the value of the bound property. 078 * 079 */ 080 boolean isBound(); 081 082 /** 083 * Sets the value of the bound property. 084 * 085 */ 086 void setBound(boolean value); 087 088}