Program

/**
* @brief The root of the extracted project.
*/

Inherit from ProgramDO

Primary key: oid: int

schema Program extends ProgramDO {
  @primary oid: int,
  printable_text: string
}

Program::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
  • Parameter self: Program
  • Return string
pub fn getPrintableText(self: Program) -> string;

Program::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *Program;