Beispiel #1
0
    private void  fromJSONWhatInformation(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        WhatInformationJSON convert_classy = WhatInformationJSON.from_json(json_value, ignore_extras, true);

        setWhatInformation(convert_classy);
    }
Beispiel #2
0
        protected override void finish()
        {
            if (!(keyGenerator.have_value))
            {
                throw new Exception("The `WhatInformationKind' field is missing.");
            }
            WhatInformationJSON result = createForKey(keyGenerator.value, unknownFieldGenerator.index);

            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.extraWhatInformationAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            if (!allow_incomplete)
            {
                string missing_field_error = result.missing_field_error(allow_unpolished);
                if (missing_field_error != null)
                {
                    error(missing_field_error);
                }
            }
            handle_result(result);
        }
Beispiel #3
0
 public void setWhatInformation(WhatInformationJSON new_value)
 {
     if (flagHasWhatInformation)
     {
     }
     flagHasWhatInformation = true;
     storeWhatInformation   = new_value;
 }
Beispiel #4
0
 protected override void handle_result(WhatInformationJSON result)
 {
     top.value.Add(result);
 }
Beispiel #5
0
        protected override void handle_result(WhatInformationJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Beispiel #6
0
 protected abstract void handle_result(WhatInformationJSON new_result);
Beispiel #7
0
 protected void finish(WhatInformationJSON result)
 {
 }
Beispiel #8
0
 protected override void handle_result(WhatInformationJSON new_result)
 {
     handle_result((FailedCommandWhatInformationJSON )new_result);
 }