Beispiel #1
0
    private void  fromJSONNativeData(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        MusicCommandNativeDataJSON convert_classy = MusicCommandNativeDataJSON.from_json(json_value, ignore_extras, true);

        setNativeData(convert_classy);
    }
Beispiel #2
0
 public void setNativeData(MusicCommandNativeDataJSON new_value)
 {
     if (flagHasNativeData)
     {
     }
     flagHasNativeData = true;
     storeNativeData   = new_value;
 }
Beispiel #3
0
 protected override void handle_result(MusicCommandNativeDataJSON new_result)
 {
     handle_result((MusicChartsCommandNativeDataJSON )new_result);
 }
 public void setNativeData(MusicCommandNativeDataJSON new_value)
 {
     MusicSearchCommandNativeDataJSON.HoldingGenerator convert_handler = new MusicSearchCommandNativeDataJSON.HoldingGenerator("Type MusicSearchCommandNativeDataJSON");
     new_value.write_as_json(convert_handler);
     setNativeData(convert_handler.value);
 }