ProgramDO

/**
* @brief DO class: A program.
*/

Primary key: oid: int

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

ProgramDO::getPrintableText

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

ProgramDO::__all__

Data constraint method.

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