pdi_id = $int_PDI_ID; $this->stig_id = $str_STIG_ID; $this->description = $str_Description; } /** * Getter function for PDI ID * * @return integer */ public function get_PDI_ID() { return $this->pdi_id; } /** * Getter function for STIG ID * * @return string */ public function get_ID() { return $this->stig_id; } /** * Setter function for STIG ID * * @param string $str_STIG_ID */ public function set_ID($str_STIG_ID) { $this->stig_id = $str_STIG_ID; } /** * Getter function for description * * @return string */ public function get_Description() { return $this->description; } /** * Setter function for description * * @param string $str_Description */ public function set_Description($str_Description) { $this->description = $str_Description; } /** * Getter function for the tweak data function content * * @return string */ public function get_Function() { return $this->function; } /** * Setter function for the tweak data function content * * @param string $str_Function_In */ public function set_Function($str_Function_In) { $this->function = $str_Function_In; } }