FileDO
/**
* @brief DO class: A file.
*/
Primary key: oid: int
schema FileDO {
@primary oid: int,
relative_path: string,
extension: string,
name: string,
program_oid: int
}
FileDO::getExtension
/**
* @brief gets the extension of this element.
* @return string
*/
- Parameter
self
:FileDO
- Return
string
pub fn getExtension(self: FileDO) -> string;
FileDO::getProgramOid
/**
* @brief gets the program oid of this element.
* @return int
*/
- Parameter
self
:FileDO
- Return
int
pub fn getProgramOid(self: FileDO) -> int;
FileDO::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:FileDO
- Return
string
pub fn getName(self: FileDO) -> string;
FileDO::__all__
Data constraint method.
pub fn __all__(db: CfamilyDB) -> *FileDO;
FileDO::getRelativePath
/**
* @brief gets the relative path of this element.
* @return string
*/
- Parameter
self
:FileDO
- Return
string
pub fn getRelativePath(self: FileDO) -> string;