| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| OverviewDoc |
|
| 1.3333333333333333;1.333 |
| 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 overviewDoc complex type. | |
| 21 | * | |
| 22 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 23 | * | |
| 24 | * <pre> | |
| 25 | * <complexType name="overviewDoc"> | |
| 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}overviewURL" minOccurs="0"/> | |
| 31 | * </sequence> | |
| 32 | * </restriction> | |
| 33 | * </complexContent> | |
| 34 | * </complexType> | |
| 35 | * </pre> | |
| 36 | * | |
| 37 | * | |
| 38 | */ | |
| 39 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 40 | @XmlType(name = "overviewDoc", propOrder = { | |
| 41 | "description", | |
| 42 | "overviewURL" | |
| 43 | }) | |
| 44 | 16 | public class OverviewDoc { |
| 45 | ||
| 46 | protected List<Description> description; | |
| 47 | protected String overviewURL; | |
| 48 | ||
| 49 | /** | |
| 50 | * Gets the value of the description property. | |
| 51 | * | |
| 52 | * <p> | |
| 53 | * This accessor method returns a reference to the live list, | |
| 54 | * not a snapshot. Therefore any modification you make to the | |
| 55 | * returned list will be present inside the JAXB object. | |
| 56 | * This is why there is not a <CODE>set</CODE> method for the description property. | |
| 57 | * | |
| 58 | * <p> | |
| 59 | * For example, to add a new item, do as follows: | |
| 60 | * <pre> | |
| 61 | * getDescription().add(newItem); | |
| 62 | * </pre> | |
| 63 | * | |
| 64 | * | |
| 65 | * <p> | |
| 66 | * Objects of the following type(s) are allowed in the list | |
| 67 | * {@link Description } | |
| 68 | * | |
| 69 | * | |
| 70 | */ | |
| 71 | public List<Description> getDescription() { | |
| 72 | 6 | if (description == null) { |
| 73 | 6 | description = new ArrayList<Description>(); |
| 74 | } | |
| 75 | 6 | return this.description; |
| 76 | } | |
| 77 | ||
| 78 | /** | |
| 79 | * Gets the value of the overviewURL property. | |
| 80 | * | |
| 81 | * @return | |
| 82 | * possible object is | |
| 83 | * {@link String } | |
| 84 | * | |
| 85 | */ | |
| 86 | public String getOverviewURL() { | |
| 87 | 4 | return overviewURL; |
| 88 | } | |
| 89 | ||
| 90 | /** | |
| 91 | * Sets the value of the overviewURL property. | |
| 92 | * | |
| 93 | * @param value | |
| 94 | * allowed object is | |
| 95 | * {@link String } | |
| 96 | * | |
| 97 | */ | |
| 98 | public void setOverviewURL(String value) { | |
| 99 | 4 | this.overviewURL = value; |
| 100 | 4 | } |
| 101 | ||
| 102 | } |