| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| InstanceDetails |
|
| 1.2;1.2 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 | |
| 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: 2009.07.19 at 09:49:41 PM CDT | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package org.apache.ws.scout.model.uddi.v2; | |
| 10 | ||
| 11 | import java.util.ArrayList; | |
| 12 | import java.util.List; | |
| 13 | ||
| 14 | import javax.xml.bind.annotation.XmlAccessType; | |
| 15 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 16 | import javax.xml.bind.annotation.XmlType; | |
| 17 | ||
| 18 | ||
| 19 | /** | |
| 20 | * <p>Java class for instanceDetails complex type. | |
| 21 | * | |
| 22 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 23 | * | |
| 24 | * <pre> | |
| 25 | * <complexType name="instanceDetails"> | |
| 26 | * <complexContent> | |
| 27 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 28 | * <sequence> | |
| 29 | * <element ref="{urn:uddi-org:api_v2}description" maxOccurs="unbounded" minOccurs="0"/> | |
| 30 | * <element ref="{urn:uddi-org:api_v2}overviewDoc" minOccurs="0"/> | |
| 31 | * <element ref="{urn:uddi-org:api_v2}instanceParms" minOccurs="0"/> | |
| 32 | * </sequence> | |
| 33 | * </restriction> | |
| 34 | * </complexContent> | |
| 35 | * </complexType> | |
| 36 | * </pre> | |
| 37 | * | |
| 38 | * | |
| 39 | */ | |
| 40 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 41 | @XmlType(name = "instanceDetails", propOrder = { | |
| 42 | "description", | |
| 43 | "overviewDoc", | |
| 44 | "instanceParms" | |
| 45 | }) | |
| 46 | 8 | public class InstanceDetails { |
| 47 | ||
| 48 | protected List<Description> description; | |
| 49 | protected OverviewDoc overviewDoc; | |
| 50 | protected String instanceParms; | |
| 51 | ||
| 52 | /** | |
| 53 | * Gets the value of the description property. | |
| 54 | * | |
| 55 | * <p> | |
| 56 | * This accessor method returns a reference to the live list, | |
| 57 | * not a snapshot. Therefore any modification you make to the | |
| 58 | * returned list will be present inside the JAXB object. | |
| 59 | * This is why there is not a <CODE>set</CODE> method for the description property. | |
| 60 | * | |
| 61 | * <p> | |
| 62 | * For example, to add a new item, do as follows: | |
| 63 | * <pre> | |
| 64 | * getDescription().add(newItem); | |
| 65 | * </pre> | |
| 66 | * | |
| 67 | * | |
| 68 | * <p> | |
| 69 | * Objects of the following type(s) are allowed in the list | |
| 70 | * {@link Description } | |
| 71 | * | |
| 72 | * | |
| 73 | */ | |
| 74 | public List<Description> getDescription() { | |
| 75 | 2 | if (description == null) { |
| 76 | 2 | description = new ArrayList<Description>(); |
| 77 | } | |
| 78 | 2 | return this.description; |
| 79 | } | |
| 80 | ||
| 81 | /** | |
| 82 | * Gets the value of the overviewDoc property. | |
| 83 | * | |
| 84 | * @return | |
| 85 | * possible object is | |
| 86 | * {@link OverviewDoc } | |
| 87 | * | |
| 88 | */ | |
| 89 | public OverviewDoc getOverviewDoc() { | |
| 90 | 4 | return overviewDoc; |
| 91 | } | |
| 92 | ||
| 93 | /** | |
| 94 | * Sets the value of the overviewDoc property. | |
| 95 | * | |
| 96 | * @param value | |
| 97 | * allowed object is | |
| 98 | * {@link OverviewDoc } | |
| 99 | * | |
| 100 | */ | |
| 101 | public void setOverviewDoc(OverviewDoc value) { | |
| 102 | 2 | this.overviewDoc = value; |
| 103 | 2 | } |
| 104 | ||
| 105 | /** | |
| 106 | * Gets the value of the instanceParms property. | |
| 107 | * | |
| 108 | * @return | |
| 109 | * possible object is | |
| 110 | * {@link String } | |
| 111 | * | |
| 112 | */ | |
| 113 | public String getInstanceParms() { | |
| 114 | 8 | return instanceParms; |
| 115 | } | |
| 116 | ||
| 117 | /** | |
| 118 | * Sets the value of the instanceParms property. | |
| 119 | * | |
| 120 | * @param value | |
| 121 | * allowed object is | |
| 122 | * {@link String } | |
| 123 | * | |
| 124 | */ | |
| 125 | public void setInstanceParms(String value) { | |
| 126 | 0 | this.instanceParms = value; |
| 127 | 0 | } |
| 128 | ||
| 129 | } |