NpProjectDO
/**
* @brief DO class: non-physical project.
*/
Primary key: element_hash_id: int
schema NpProjectDO {
@primary element_hash_id: int,
extension: string,
name: string
}
NpProjectDO::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:NpProjectDO
- Return
string
pub fn getName(self: NpProjectDO) -> string;
NpProjectDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*NpProjectDO
pub fn __all__(db: JavaDB) -> *NpProjectDO;
NpProjectDO::getExtension
/**
* @brief gets the extension of this element.
* @return string
*/
- Parameter
self
:NpProjectDO
- Return
string
pub fn getExtension(self: NpProjectDO) -> string;