Exemplo n.º 1
0
        protected void finish()
        {
            Debug.Assert(have_value);
            SportsGameSchedulesScoresAPIJSON result = new SportsGameSchedulesScoresAPIJSON();

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

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