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

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

The newest version!

package com.sforce.soap.tooling;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CodeLocation complex type. * *

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

 * <complexType name="CodeLocation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="column" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="line" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="numExecutions" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CodeLocation", propOrder = { "column", "line", "numExecutions", "time" }) public class CodeLocation { protected int column; protected int line; protected int numExecutions; protected double time; /** * Gets the value of the column property. * */ public int getColumn() { return column; } /** * Sets the value of the column property. * */ public void setColumn(int value) { this.column = value; } /** * Gets the value of the line property. * */ public int getLine() { return line; } /** * Sets the value of the line property. * */ public void setLine(int value) { this.line = value; } /** * Gets the value of the numExecutions property. * */ public int getNumExecutions() { return numExecutions; } /** * Sets the value of the numExecutions property. * */ public void setNumExecutions(int value) { this.numExecutions = value; } /** * Gets the value of the time property. * */ public double getTime() { return time; } /** * Sets the value of the time property. * */ public void setTime(double value) { this.time = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy