Esempio n. 1
0
        protected override void handle_result(TypeValue new_value)
        {
            StockListingRequestTypeJSON result = new StockListingRequestTypeJSON();

            result.setValue(new_value);
            handle_result(result);
        }
Esempio n. 2
0
    private void  fromJSONListingRequestType(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        StockListingRequestTypeJSON convert_classy = StockListingRequestTypeJSON.from_json(json_value, ignore_extras, true);

        setListingRequestType(convert_classy);
    }
Esempio n. 3
0
 public void setListingRequestType(StockListingRequestTypeJSON new_value)
 {
     if (flagHasListingRequestType)
     {
     }
     flagHasListingRequestType = true;
     storeListingRequestType   = new_value;
 }
Esempio n. 4
0
 public void setListingRequestType(string chars)
 {
     StockListingRequestTypeJSON.TypeValueKnownValues known     = StockListingRequestTypeJSON.stringToValue(chars);
     StockListingRequestTypeJSON.TypeValue            new_value = new StockListingRequestTypeJSON.TypeValue();
     if (known == StockListingRequestTypeJSON.TypeValueKnownValues.Value__none)
     {
         new_value.in_known_list = false;
         new_value.string_value  = chars;
     }
     else
     {
         new_value.in_known_list = true;
         new_value.list_value    = known;
     }
     setListingRequestType(new_value);
 }
Esempio n. 5
0
 protected override void handle_result(StockListingRequestTypeJSON result)
 {
     top.value.Add(result);
 }
Esempio n. 6
0
        protected override void handle_result(StockListingRequestTypeJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Esempio n. 7
0
 protected abstract void handle_result(StockListingRequestTypeJSON new_result);