private void  fromJSONValue(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field Value of GuessedTracksListJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <MusicTrackJSON> vector_Value1 = new List <MusicTrackJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            MusicTrackJSON convert_classy = MusicTrackJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Value1.Add(convert_classy);
        }
        initValue();
        for (int num1 = 0; num1 < vector_Value1.Count; ++num1)
        {
            appendValue(vector_Value1[num1]);
        }
        for (int num1 = 0; num1 < vector_Value1.Count; ++num1)
        {
        }
    }
Beispiel #2
0
    private void  fromJSONTrack(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        MusicTrackJSON convert_classy = MusicTrackJSON.from_json(json_value, ignore_extras, true);

        setTrack(convert_classy);
    }
Beispiel #3
0
 public void setTrack(MusicTrackJSON new_value)
 {
     if (flagHasTrack)
     {
     }
     flagHasTrack = true;
     storeTrack   = new_value;
 }
        protected override void finish()
        {
            MusicTrackJSON result = new MusicTrackJSON();

            Debug.Assert(result != null);
            finish(result);
            handle_result(result);
        }
 public void appendValue(MusicTrackJSON to_append)
 {
     if (!flagHasValue)
     {
         flagHasValue = true;
         storeValue.Clear();
     }
     Debug.Assert(flagHasValue);
     storeValue.Add(to_append);
 }
 protected void finish(MusicTrackJSON result)
 {
     if (fieldGeneratorArtists.have_value)
     {
         result.initArtists();
         int count = fieldGeneratorArtists.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendArtists(fieldGeneratorArtists.value[num]);
         }
         fieldGeneratorArtists.value.Clear();
         fieldGeneratorArtists.have_value = false;
     }
     if (fieldGeneratorAlbum.have_value)
     {
         result.setAlbum(fieldGeneratorAlbum.value);
         fieldGeneratorAlbum.have_value = false;
     }
     base.finish(result);
 }
 protected override void handle_result(MusicTrackJSON result)
 {
     top.value.Add(result);
 }
        protected override void handle_result(MusicTrackJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
 protected abstract void handle_result(MusicTrackJSON new_result);