![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.Position Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
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 Position complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Position">
* <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"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Position", propOrder = {
"column",
"line"
})
public class Position {
protected int column;
protected int line;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy