NpProject

/**
* @brief Represents a non-physical project, suck as a jar from dependencies.
*/

Inherit from NpProjectDO

Primary key: element_hash_id: int

schema NpProject extends NpProjectDO {
  @primary element_hash_id: int,
  extension: string,
  name: string
}

NpProject::getExtension

/**
* @brief gets the extension of this element.
* @return string
*/
pub fn getExtension(self: NpProject) -> string;

NpProject::__all__

Data constraint method.

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

NpProject::getName

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