NpFileDO
/**
* @brief DO class: non-physical file.
*/
Primary key: element_hash_id: int
schema NpFileDO {
@primary element_hash_id: int,
qualified_name: string,
name: string,
project_hash_id: int
}
NpFileDO::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:NpFileDO
- Return
string
pub fn getName(self: NpFileDO) -> string;
NpFileDO::__all__
Data constraint method.
pub fn __all__(db: JavaDB) -> *NpFileDO;
NpFileDO::getProjectHashId
/**
* @brief gets the project hash id of this element.
* @return int
*/
- Parameter
self
:NpFileDO
- Return
int
pub fn getProjectHashId(self: NpFileDO) -> int;
NpFileDO::getQualifiedName
/**
* @brief gets the qualified name of this element.
* @return string
*/
- Parameter
self
:NpFileDO
- Return
string
pub fn getQualifiedName(self: NpFileDO) -> string;