Coverage Report - net.webservicex.GetQuote
 
Classes in this File Line Coverage Branch Coverage Complexity
GetQuote
0%
0/4
N/A
0
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package net.webservicex;
 8  
 
 9  
 import javax.xml.bind.annotation.XmlAccessType;
 10  
 import javax.xml.bind.annotation.XmlAccessorType;
 11  
 import javax.xml.bind.annotation.XmlRootElement;
 12  
 import javax.xml.bind.annotation.XmlType;
 13  
 
 14  
 
 15  
 /**
 16  
  * <p>Java class for anonymous complex type.
 17  
  * 
 18  
  * <p>The following schema fragment specifies the expected content contained within this class.
 19  
  * 
 20  
  * <pre>
 21  
  * &lt;complexType>
 22  
  *   &lt;complexContent>
 23  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 24  
  *       &lt;sequence>
 25  
  *         &lt;element name="symbol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 26  
  *       &lt;/sequence>
 27  
  *     &lt;/restriction>
 28  
  *   &lt;/complexContent>
 29  
  * &lt;/complexType>
 30  
  * </pre>
 31  
  * 
 32  
  * 
 33  
  */
 34  
 @XmlAccessorType(XmlAccessType.FIELD)
 35  
 @XmlType(name = "", propOrder = {
 36  
     "symbol"
 37  
 })
 38  
 @XmlRootElement(name = "GetQuote")
 39  0
 public class GetQuote {
 40  
 
 41  
     protected String symbol;
 42  
 
 43  
     /**
 44  
      * Gets the value of the symbol property.
 45  
      * 
 46  
      * @return
 47  
      *     possible object is
 48  
      *     {@link String }
 49  
      *     
 50  
      */
 51  
     public String getSymbol() {
 52  0
         return symbol;
 53  
     }
 54  
 
 55  
     /**
 56  
      * Sets the value of the symbol property.
 57  
      * 
 58  
      * @param value
 59  
      *     allowed object is
 60  
      *     {@link String }
 61  
      *     
 62  
      */
 63  
     public void setSymbol(String value) {
 64  0
         this.symbol = value;
 65  0
     }
 66  
 
 67  
 }