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

com.sforce.soap.tooling.HeapAddress Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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 HeapAddress complex type. * *

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

 * <complexType name="HeapAddress">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="size" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="symbols" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="value" type="{urn:tooling.soap.sforce.com}StateValue"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HeapAddress", propOrder = { "address", "size", "symbols", "value" }) public class HeapAddress { @XmlElement(required = true) protected String address; protected int size; protected List symbols; @XmlElement(required = true) protected StateValue value; /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Gets the value of the size property. * */ public int getSize() { return size; } /** * Sets the value of the size property. * */ public void setSize(int value) { this.size = value; } /** * Gets the value of the symbols 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 symbols property. * *

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

     *    getSymbols().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getSymbols() { if (symbols == null) { symbols = new ArrayList(); } return this.symbols; } /** * Gets the value of the value property. * * @return * possible object is * {@link StateValue } * */ public StateValue getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link StateValue } * */ public void setValue(StateValue value) { this.value = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy