NpInterfaceDO

/** * @brief DO class: non-physical interface. */ 

Primary key: element_hash_id: int

schema NpInterfaceDO { @primary element_hash_id: int, name: string, qualified_name: string, parent_hash_id: int } 

NpInterfaceDO::getParentHashId

/** * @brief gets the parent hash id of this element. * @return int */ 
pub fn getParentHashId(self: NpInterfaceDO) -> int; 

NpInterfaceDO::getQualifiedName

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

NpInterfaceDO::__all__

Data constraint method.

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

NpInterfaceDO::getName

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