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
*/
- Parameter
self
:ProgramDO
- Return
string
pub fn getAbsolutePathPrefix(self: ProgramDO) -> string;
ProgramDO::__all__
Data constraint method.
- Parameter
db
:PropertiesDB
- Return
*ProgramDO
pub fn __all__(db: PropertiesDB) -> *ProgramDO;