| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| BusinessInfos | 
 | 
 | 2.0;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 businessInfos complex type. | |
| 21 |   *  | |
| 22 |   * <p>The following schema fragment specifies the expected content contained within this class. | |
| 23 |   *  | |
| 24 |   * <pre> | |
| 25 |   * <complexType name="businessInfos"> | |
| 26 |   *   <complexContent> | |
| 27 |   *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 28 |   *       <sequence> | |
| 29 |   *         <element ref="{urn:uddi-org:api_v2}businessInfo" maxOccurs="unbounded" minOccurs="0"/> | |
| 30 |   *       </sequence> | |
| 31 |   *     </restriction> | |
| 32 |   *   </complexContent> | |
| 33 |   * </complexType> | |
| 34 |   * </pre> | |
| 35 |   *  | |
| 36 |   *  | |
| 37 |   */ | |
| 38 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 39 |  @XmlType(name = "businessInfos", propOrder = { | |
| 40 |      "businessInfo" | |
| 41 | }) | |
| 42 | 30 | public class BusinessInfos { | 
| 43 | ||
| 44 |      protected List<BusinessInfo> businessInfo; | |
| 45 | ||
| 46 |      /** | |
| 47 |       * Gets the value of the businessInfo property. | |
| 48 |       *  | |
| 49 |       * <p> | |
| 50 |       * This accessor method returns a reference to the live list, | |
| 51 |       * not a snapshot. Therefore any modification you make to the | |
| 52 |       * returned list will be present inside the JAXB object. | |
| 53 |       * This is why there is not a <CODE>set</CODE> method for the businessInfo property. | |
| 54 |       *  | |
| 55 |       * <p> | |
| 56 |       * For example, to add a new item, do as follows: | |
| 57 |       * <pre> | |
| 58 |       *    getBusinessInfo().add(newItem); | |
| 59 |       * </pre> | |
| 60 |       *  | |
| 61 |       *  | |
| 62 |       * <p> | |
| 63 |       * Objects of the following type(s) are allowed in the list | |
| 64 |       * {@link BusinessInfo } | |
| 65 |       *  | |
| 66 |       *  | |
| 67 |       */ | |
| 68 |      public List<BusinessInfo> getBusinessInfo() { | |
| 69 | 28 | if (businessInfo == null) { | 
| 70 | 2 |              businessInfo = new ArrayList<BusinessInfo>(); | 
| 71 | } | |
| 72 | 28 | return this.businessInfo; | 
| 73 | } | |
| 74 | ||
| 75 | } |