setAttribute(PARAM_ID, $id); } public function setSampling($sampling) { $node = $this->getChildInstanceByName(PARAM_SAMPLING,true); $node->setValue($sampling); } public function setGap($gap) { $node = $this->getChildInstanceByName(PARAM_GAP,true); $node->setValue($gap); } public function addParamGet($type) { $node = $this->getChildInstanceByName(PARAM_GET, true); switch ($type) { case ParamGetTypeEnum::AMDAPARAM : $paramGet = new ParamGetAmdaParamNodeClass(); break; case ParamGetTypeEnum::DDBASE : $paramGet = new ParamGetDDBaseNodeClass(); break; default : throw new Exception('Param get node not implemented'); } $node->addChild($paramGet); return $paramGet; } public function setProcess($process) { $node = $this->getChildInstanceByName(PARAM_PROCESS, true); $node->setValue($process); } public function setOutput() { $node = $this->getChildInstanceByName(PARAM_OUTPUT, true); } } ?>