Example #1
0
        protected void finish()
        {
            Debug.Assert(have_value);
            RadioControlAvailableAudioSourcesJSON result = new RadioControlAvailableAudioSourcesJSON();

            result.initValue();
            int count = value.Count;

            for (int num = 0; num < count; ++num)
            {
                result.appendValue(value[num]);
            }
            handle_result(result);
        }
Example #2
0
 protected override void handle_result(RadioControlAvailableAudioSourcesJSON result)
 {
     top.value.Add(result);
 }
Example #3
0
        protected override void handle_result(RadioControlAvailableAudioSourcesJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Example #4
0
 protected abstract void handle_result(RadioControlAvailableAudioSourcesJSON new_result);