コード例 #1
0
    private void  fromJSONPlaylist(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        PlaylistStateItemJSON convert_classy = PlaylistStateItemJSON.from_json(json_value, ignore_extras, true);

        setPlaylist(convert_classy);
    }
コード例 #2
0
    private void  fromJSONPlaylists(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 Playlists of MusicClientStateJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <PlaylistStateItemJSON> vector_Playlists1 = new List <PlaylistStateItemJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            PlaylistStateItemJSON convert_classy = PlaylistStateItemJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Playlists1.Add(convert_classy);
        }
        initPlaylists();
        for (int num4 = 0; num4 < vector_Playlists1.Count; ++num4)
        {
            appendPlaylists(vector_Playlists1[num4]);
        }
        for (int num1 = 0; num1 < vector_Playlists1.Count; ++num1)
        {
        }
    }
コード例 #3
0
 public void setPlaylist(PlaylistStateItemJSON new_value)
 {
     if (flagHasPlaylist)
     {
     }
     flagHasPlaylist = true;
     storePlaylist   = new_value;
 }
コード例 #4
0
 public void appendPlaylists(PlaylistStateItemJSON to_append)
 {
     if (!flagHasPlaylists)
     {
         flagHasPlaylists = true;
         storePlaylists.Clear();
     }
     Debug.Assert(flagHasPlaylists);
     storePlaylists.Add(to_append);
 }
コード例 #5
0
 protected void finish(PlaylistStateItemJSON result)
 {
     if (fieldGeneratorIndex.have_value)
     {
         result.setIndex(fieldGeneratorIndex.value);
         fieldGeneratorIndex.have_value = false;
     }
     if (fieldGeneratorID.have_value)
     {
         result.setID(fieldGeneratorID.value);
         fieldGeneratorID.have_value = false;
     }
     if (fieldGeneratorMusicService.have_value)
     {
         result.setMusicService(fieldGeneratorMusicService.value);
         fieldGeneratorMusicService.have_value = false;
     }
 }
コード例 #6
0
        protected override void finish()
        {
            PlaylistStateItemJSON result = new PlaylistStateItemJSON();

            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.extraPlaylistStateItemAppendPair(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);
        }
コード例 #7
0
 protected override void handle_result(PlaylistStateItemJSON result)
 {
     top.value.Add(result);
 }
コード例 #8
0
        protected override void handle_result(PlaylistStateItemJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
コード例 #9
0
 protected abstract void handle_result(PlaylistStateItemJSON new_result);