def genCmd(self, cmdinfo, name, alias):
        """Method override."""
        BaseGenerator.genCmd(self, cmdinfo, name, alias)

        # Look for output structs that contain handles and add to list
        if not alias:
            for value_info in self.feature_cmd_params[name][2]:
                if self.is_output_parameter(value_info) and (
                        value_info.base_type
                        in self.get_filtered_struct_names()) and (
                            value_info.base_type in self.structs_with_handles
                        ) and (value_info.base_type
                               not in self.output_structs_with_handles):
                    self.output_structs_with_handles.append(
                        value_info.base_type)