LocationDO

/**
* @brief DO class: The location information of a locatable xml elements.
*/

Primary key: id: int

schema LocationDO {
  @primary id: int,
  start_line_number: int,
  start_column_number: int,
  end_line_number: int,
  end_column_number: int,
  file_id: int
}

LocationDO::getFileId

/**
* @brief gets the file id of the location element.
* @return int
*/
pub fn getFileId(self: LocationDO) -> int;

LocationDO::getStartLineNumber

/**
* @brief gets the start line number of the location element.
* @return int 
*/
pub fn getStartLineNumber(self: LocationDO) -> int;

LocationDO::getEndLineNumber

/**
* @brief gets the end line number of the location element.
* @return int 
*/
pub fn getEndLineNumber(self: LocationDO) -> int;

LocationDO::__all__

Data constraint method.

pub fn __all__(db: XmlDB) -> *LocationDO;

LocationDO::getStartColumnNumber

/**
* @brief gets the start column number of the location element.
* @return int 
*/
pub fn getStartColumnNumber(self: LocationDO) -> int;

LocationDO::getEndColumnNumber

/**
* @brief gets the end column number of the location element.
* @return int 
*/
pub fn getEndColumnNumber(self: LocationDO) -> int;