All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palominolabs.crm.sf.soap.jaxwsstub.apex.CodeCoverageResult Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version

package com.palominolabs.crm.sf.soap.jaxwsstub.apex;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CodeCoverageResult complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CodeCoverageResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://soap.sforce.com/2006/08/apex}ID"/>
 *         <element name="locationsNotCovered" type="{http://soap.sforce.com/2006/08/apex}CodeLocation" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="namespace" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="numLocations" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="numLocationsNotCovered" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CodeCoverageResult", propOrder = { "id", "locationsNotCovered", "name", "namespace", "numLocations", "numLocationsNotCovered", "type" }) public class CodeCoverageResult { @XmlElement(required = true) protected String id; protected List locationsNotCovered; @XmlElement(required = true) protected String name; @XmlElement(required = true, nillable = true) protected String namespace; protected int numLocations; protected int numLocationsNotCovered; @XmlElement(required = true) protected String type; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the locationsNotCovered property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the locationsNotCovered property. * *

* For example, to add a new item, do as follows: *

     *    getLocationsNotCovered().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeLocation } * * */ public List getLocationsNotCovered() { if (locationsNotCovered == null) { locationsNotCovered = new ArrayList(); } return this.locationsNotCovered; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the namespace property. * * @return * possible object is * {@link String } * */ public String getNamespace() { return namespace; } /** * Sets the value of the namespace property. * * @param value * allowed object is * {@link String } * */ public void setNamespace(String value) { this.namespace = value; } /** * Gets the value of the numLocations property. * */ public int getNumLocations() { return numLocations; } /** * Sets the value of the numLocations property. * */ public void setNumLocations(int value) { this.numLocations = value; } /** * Gets the value of the numLocationsNotCovered property. * */ public int getNumLocationsNotCovered() { return numLocationsNotCovered; } /** * Sets the value of the numLocationsNotCovered property. * */ public void setNumLocationsNotCovered(int value) { this.numLocationsNotCovered = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy