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
*/
pub fn getParentHashId(self: NpInterface) -> int;

NpInterface::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: NpInterface) -> string;

NpInterface::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *NpInterface;

NpInterface::getQualifiedName

/**
* @brief gets the qualified name of this element.
* @return string
*/
pub fn getQualifiedName(self: NpInterface) -> string;

NpInterface::getParent

/**
* @brief gets the parent of this element.
* @return ElementParent
*/
pub fn getParent(self: NpInterface) -> ElementParent;