_type = $type; $this->_args = $args; } public function get_type() { return $this->_type; } public function get_args() { return $this->_args; } public function register_group($name, $id) { $group = new GroupSchema($name, $id); $this->_groups[] = $group; return $group; } public function get_groups() { return $this->_groups; } }