ProgramDO

/**
*
* @brief DO class: A program.
*/

Primary key: oid: int

schema ProgramDO {
  @primary oid: int,
  absolute_path_prefix: string
}

ProgramDO::getAbsolutePathPrefix

/**
* @brief gets the absolute path prefix of this element.
* @return string
*/
pub fn getAbsolutePathPrefix(self: ProgramDO) -> string;

ProgramDO::__all__

Data constraint method.

pub fn __all__(db: PropertiesDB) -> *ProgramDO;