LocationDO
/**
*
* @brief DO class: A location.
*/
Primary key: element_oid: int
schema LocationDO {
@primary element_oid: int,
file_oid: int,
start_line_number: int,
start_column_number: int,
end_line_number: int,
end_column_number: int
}
LocationDO::getEndColumnNumber
/**
* @brief gets the end column number of this element.
* @return int
*/
- Parameter
self
:LocationDO
- Return
int
pub fn getEndColumnNumber(self: LocationDO) -> int;
LocationDO::getStartColumnNumber
/**
* @brief gets the start column number of this element.
* @return int
*/
- Parameter
self
:LocationDO
- Return
int
pub fn getStartColumnNumber(self: LocationDO) -> int;
LocationDO::__all__
Data constraint method.
- Parameter
db
:PropertiesDB
- Return
*LocationDO
pub fn __all__(db: PropertiesDB) -> *LocationDO;
LocationDO::getEndLineNumber
/**
* @brief gets the end line number of this element.
* @return int
*/
- Parameter
self
:LocationDO
- Return
int
pub fn getEndLineNumber(self: LocationDO) -> int;
LocationDO::getFileOid
/**
* @brief gets the file oid of this element.
* @return int
*/
- Parameter
self
:LocationDO
- Return
int
pub fn getFileOid(self: LocationDO) -> int;
LocationDO::getStartLineNumber
/**
* @brief gets the start line number of this element.
* @return int
*/
- Parameter
self
:LocationDO
- Return
int
pub fn getStartLineNumber(self: LocationDO) -> int;