NpInterface
/**
* @brief Represents a non-physical interface.
*/
Inherit from NpInterfaceDO
Primary key: element_hash_id: int
schema NpInterface extends NpInterfaceDO {
@primary element_hash_id: int,
name: string,
qualified_name: string,
parent_hash_id: int
}
NpInterface::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:NpInterface
- Return
int
pub fn getParentHashId(self: NpInterface) -> int;
NpInterface::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:NpInterface
- Return
string
pub fn getName(self: NpInterface) -> string;
NpInterface::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*NpInterface
pub fn __all__(db: JavaDB) -> *NpInterface;
NpInterface::getQualifiedName
/**
* @brief gets the qualified name of this element.
* @return string
*/
- Parameter
self
:NpInterface
- Return
string
pub fn getQualifiedName(self: NpInterface) -> string;
NpInterface::getParent
/**
* @brief gets the parent of this element.
* @return ElementParent
*/
- Parameter
self
:NpInterface
- Return
ElementParent
pub fn getParent(self: NpInterface) -> ElementParent;