Exemple #1
0
    private void  fromJSONStateInTimeline(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        FlightStatusEventStateInTimelineJSON convert_classy = FlightStatusEventStateInTimelineJSON.from_json(json_value, ignore_extras, true);

        setStateInTimeline(convert_classy);
    }
Exemple #2
0
        protected override void handle_result(TypeValue new_value)
        {
            FlightStatusEventStateInTimelineJSON result = new FlightStatusEventStateInTimelineJSON();

            result.setValue(new_value);
            handle_result(result);
        }
Exemple #3
0
 public void setStateInTimeline(FlightStatusEventStateInTimelineJSON new_value)
 {
     if (flagHasStateInTimeline)
     {
     }
     flagHasStateInTimeline = true;
     storeStateInTimeline   = new_value;
 }
Exemple #4
0
 protected override void handle_result(FlightStatusEventStateInTimelineJSON result)
 {
     top.value.Add(result);
 }
Exemple #5
0
        protected override void handle_result(FlightStatusEventStateInTimelineJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Exemple #6
0
 protected abstract void handle_result(FlightStatusEventStateInTimelineJSON new_result);