argument = $argument; } function getValue($with_values = true){ if($with_values) return $this->argument->getValue(); return '?'; } function show(){ if(!$this->argument) return false; $value = $this->argument->getValue(); if(!isset($value)) return false; return true; } function getArgument(){ return $this->argument; } function getArguments() { if ($this->argument) return array($this->argument); else return array(); } } ?>