XmlDtdDO

/**
* @brief DO class: An xml dtd element.
*/

Primary key: id: int

schema XmlDtdDO {
  @primary id: int,
  root: string,
  public_id: string,
  system_id: string,
  location_id: int
}

XmlDtdDO::getLocationId

/**
* @brief gets the location id of this element.
* @return int
*/
pub fn getLocationId(self: XmlDtdDO) -> int;

XmlDtdDO::getPublicId

/**
* @brief gets the public id (which is a string) of the element.
* @return string 
*/
  • Parameter self: XmlDtdDO
  • Return string
pub fn getPublicId(self: XmlDtdDO) -> string;

XmlDtdDO::__all__

Data constraint method.

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

XmlDtdDO::getSystemId

/**
* @brief gets the system id (which is a string) of the element.
* @return string 
*/
  • Parameter self: XmlDtdDO
  • Return string
pub fn getSystemId(self: XmlDtdDO) -> string;

XmlDtdDO::getRoot

/**
* @brief gets the root of the element.
* @return string 
*/
  • Parameter self: XmlDtdDO
  • Return string
pub fn getRoot(self: XmlDtdDO) -> string;