private void  fromJSONNativeData(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        MusicSearchCommandNativeDataJSON convert_classy = MusicSearchCommandNativeDataJSON.from_json(json_value, ignore_extras, true);

        setNativeData(convert_classy);
    }
 public new void setNativeData(MusicSearchCommandNativeDataJSON new_value)
 {
     if (flagHasNativeData)
     {
     }
     flagHasNativeData = true;
     storeNativeData   = new_value;
     MusicCommandNativeDataJSON.HoldingGenerator convert_handler = new MusicCommandNativeDataJSON.HoldingGenerator("Type MusicCommandNativeDataJSON");
     new_value.write_as_json(convert_handler);
     base.setNativeData(convert_handler.value);
 }
        protected override void finish()
        {
            if (!(getMusicCommandNativeDataJSONKey().Equals("MusicSearchCommandNativeData")))
            {
                throw new Exception("The key field has a value other than `MusicSearchCommandNativeData'.");
            }
            MusicSearchCommandNativeDataJSON result = new MusicSearchCommandNativeDataJSON();

            Debug.Assert(result != null);
            finish(result);
            int extra_count = unknownFieldGenerator.field_names.Count;

            Debug.Assert(extra_count == unknownFieldGenerator.field_values.Count);
            for (int extra_num = 0; extra_num < extra_count; ++extra_num)
            {
                result.extraMusicSearchCommandNativeDataAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            handle_result(result);
        }
 protected override void handle_result(MusicSearchCommandNativeDataJSON result)
 {
     top.value.Add(result);
 }
        protected override void handle_result(MusicSearchCommandNativeDataJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
 protected abstract void handle_result(MusicSearchCommandNativeDataJSON new_result);
 protected void finish(MusicSearchCommandNativeDataJSON result)
 {
     base.finish(result);
 }