_propDict)) { return $this->_propDict["registryHive"]; } else { return null; } } /** * Sets the registryHive * Registry hive of the key that the recorded action was applied to. * * @param string $val The value of the registryHive * * @return RegistryKeyEvidence */ public function setRegistryHive($val) { $this->_propDict["registryHive"] = $val; return $this; } /** * Gets the registryKey * Registry key that the recorded action was applied to. * * @return string|null The registryKey */ public function getRegistryKey() { if (array_key_exists("registryKey", $this->_propDict)) { return $this->_propDict["registryKey"]; } else { return null; } } /** * Sets the registryKey * Registry key that the recorded action was applied to. * * @param string $val The value of the registryKey * * @return RegistryKeyEvidence */ public function setRegistryKey($val) { $this->_propDict["registryKey"] = $val; return $this; } }