KeywordWithoutName

/**
* @brief A keyword without name to a function call or class definition.
*/

Inherit from Keyword

Primary key: element_oid: int

schema KeywordWithoutName extends Keyword {
  @primary element_oid: int,
  arg_value: string,
  value_oid: int,
  element_index: int,
  parent_oid: int,
  location_oid: int,
  printable_text: string
}

KeywordWithoutName::getElementIndex

/**
* @brief gets the element index of this element.
* @return int
*/
pub fn getElementIndex(self: KeywordWithoutName) -> int;

KeywordWithoutName::getParent

/**
* @brief gets the parent element of the element
* @return CombineElement 
*/
pub fn getParent(self: KeywordWithoutName) -> CombineElement;

KeywordWithoutName::getArgName

/**
* @brief gets the parameter name of the keyword.
* @return string 
*/
pub fn getArgName(self: KeywordWithoutName) -> string;

KeywordWithoutName::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return CombineElement 
*/
pub fn getAnAncestor(self: KeywordWithoutName) -> *CombineElement;

KeywordWithoutName::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: KeywordWithoutName) -> int;

KeywordWithoutName::getValue

/**
* @brief gets the value of the keyword.
* @return Expression 
*/
pub fn getValue(self: KeywordWithoutName) -> Expression;

KeywordWithoutName::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *KeywordWithoutName;

KeywordWithoutName::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: KeywordWithoutName) -> Location;

KeywordWithoutName::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
pub fn getPrintableText(self: KeywordWithoutName) -> string;

KeywordWithoutName::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: KeywordWithoutName) -> int;

KeywordWithoutName::getArgValue

/**
* @brief gets the arg value of this element.
* @return string
*/
pub fn getArgValue(self: KeywordWithoutName) -> string;

KeywordWithoutName::getValueOid

/**
* @brief gets the value oid of this element.
* @return int
*/
pub fn getValueOid(self: KeywordWithoutName) -> int;