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